12345678910111213141516171819202122232425262728 |
- image: debian:buster
- stages:
- - test
- before_script:
- - apt-get update -y
- - apt-get install -y curl fontforge python3-pip sassc virtualenv git
- test_json:
- stage: test
- script:
- - virtualenv -p python3 venv
- - source venv/bin/activate
- - pip3 install json-spec
- - json validate --schema-file=lab/metadata.json --document-file=lab/metadata.json
- test_build:
- stage: test
- script:
- - bash build.sh
- test_css:
- stage: test
- script:
- - git submodule update --init
- - python3 test/w3c-validator.py dist/css/libresocial.css
|