.gitlab-ci.yml (302B)
1 stages: 2 - test 3 - package 4 5 default: 6 image: python:3.12 7 8 test: 9 stage: test 10 script: 11 - make test 12 13 package: 14 stage: package 15 before_script: 16 - apt-get update 17 - apt-get install --yes zip 18 script: 19 - make package 20 artifacts: 21 paths: 22 - tem_loader.zip 23 expire_in: 1 week