mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-14 11:00:10 +01:00
baef08725b
Bump to latest released version, remove all handling of things that changed in a backward incompatible way before.
26 lines
657 B
YAML
26 lines
657 B
YAML
image: registry.gitlab.com/fdroid/ci-images-server:latest
|
|
|
|
test:
|
|
script:
|
|
- pip3 install -e .
|
|
- cd tests
|
|
- ./complete-ci-tests
|
|
|
|
# Test that the parsing of the .txt format didn't change
|
|
# from last released version.
|
|
metadata_v0:
|
|
script:
|
|
- cd tests
|
|
- export GITCOMMIT=`git describe`
|
|
- git checkout 0.8 # bump after release
|
|
- cd ..
|
|
- git clone --depth 1 https://gitlab.com/fdroid/fdroiddata
|
|
- cd fdroiddata
|
|
- ../tests/dump_internal_metadata_format.py
|
|
- cd ..
|
|
- git reset --hard
|
|
- git checkout $GITCOMMIT
|
|
- cd fdroiddata
|
|
- ../tests/dump_internal_metadata_format.py
|
|
- diff -uw metadata/dump_*
|