veilid/.gitlab-ci.yml

45 lines
744 B
YAML
Raw Normal View History

variables:
2022-11-22 22:16:53 +00:00
NO_DOCKER: 1
FORCE_COLOR: 1
EARTHLY_EXEC_CMD: "/bin/sh"
2022-11-27 05:18:08 +00:00
GIT_SUBMODULE_STRATEGY: normal
stages:
- test
- distribute
2021-11-24 21:49:13 +00:00
2022-11-22 22:16:53 +00:00
before_script:
- earthly bootstrap
2021-12-05 20:22:28 +00:00
test_amd64:
stage: test
2023-06-23 00:18:45 +00:00
image: earthly/earthly:v0.6.30
only:
2023-06-23 01:38:04 +00:00
- main
2023-06-23 00:18:45 +00:00
- merge_requests
tags:
- linux
- amd64
script:
2023-06-23 00:47:11 +00:00
- earthly --ci +unit-tests-linux-amd64
2023-06-23 00:18:45 +00:00
when: manual
distribute_amd64:
stage: distribute
only:
- stable
tags:
- linux
- amd64
script:
2023-07-04 02:50:50 +00:00
- earthly +package-linux-amd64-deb
- earthly +package-linux-amd64-rpm
2023-06-23 01:38:04 +00:00
- /home/gitlab-runner/distribute-packages.sh
2023-07-04 16:34:48 +00:00
repo_deployment:
stage: distribute
only: stable
needs: distribute_amd64
tags: repo-setup
script: /home/gitlab-runner/deploy.sh