7f65876811
This way, the preparing commands are only run once. Also, if readmeta fails, lint will fail with the same message. So having the two messages thrown in parallel is of little use.
13 lines
355 B
YAML
13 lines
355 B
YAML
before_script:
|
|
- apt-get update -qy
|
|
- apt-get install -y python python-requests python-magic
|
|
- test -d fdroidserver && rm -rf fdroidserver
|
|
- git clone https://gitlab.com/fdroid/fdroidserver.git fdroidserver --depth=10
|
|
- export PATH="$PATH:$PWD/fdroidserver"
|
|
- touch config.py
|
|
|
|
metadata_check:
|
|
script:
|
|
- fdroid readmeta
|
|
- fdroid lint
|