2021-11-26 08:54:38 -06:00
|
|
|
variables:
|
2022-11-22 16:16:53 -06:00
|
|
|
NO_DOCKER: 1
|
|
|
|
FORCE_COLOR: 1
|
|
|
|
EARTHLY_EXEC_CMD: "/bin/sh"
|
2022-11-26 23:18:08 -06:00
|
|
|
GIT_SUBMODULE_STRATEGY: normal
|
2021-11-26 08:54:38 -06:00
|
|
|
|
2023-02-20 13:14:05 -06:00
|
|
|
stages:
|
2023-06-20 21:46:05 -05:00
|
|
|
- test
|
|
|
|
- distribute
|
2021-11-24 15:49:13 -06:00
|
|
|
|
2023-07-04 13:31:02 -05:00
|
|
|
#before_script:
|
|
|
|
# - earthly bootstrap
|
2021-12-05 14:22:28 -06:00
|
|
|
|
2023-06-20 21:46:05 -05:00
|
|
|
test_amd64:
|
|
|
|
stage: test
|
2023-06-22 19:18:45 -05:00
|
|
|
image: earthly/earthly:v0.6.30
|
2023-06-20 21:46:05 -05:00
|
|
|
only:
|
2023-06-22 20:38:04 -05:00
|
|
|
- main
|
2023-06-22 19:18:45 -05:00
|
|
|
- merge_requests
|
2023-06-20 21:46:05 -05:00
|
|
|
tags:
|
|
|
|
- linux
|
|
|
|
- amd64
|
|
|
|
script:
|
2023-07-04 13:31:02 -05:00
|
|
|
- earthly bootstrap
|
2023-06-22 19:47:11 -05:00
|
|
|
- earthly --ci +unit-tests-linux-amd64
|
2023-06-22 19:18:45 -05:00
|
|
|
when: manual
|
2023-06-20 21:46:05 -05:00
|
|
|
|
2023-07-04 13:31:02 -05:00
|
|
|
package_amd64:
|
2023-06-20 21:46:05 -05:00
|
|
|
stage: distribute
|
|
|
|
only:
|
2023-06-23 08:18:15 -05:00
|
|
|
- stable
|
2023-06-20 21:46:05 -05:00
|
|
|
tags:
|
|
|
|
- linux
|
|
|
|
- amd64
|
|
|
|
script:
|
2023-07-04 13:31:02 -05:00
|
|
|
- earthly bootstrap
|
2023-07-03 21:50:50 -05:00
|
|
|
- earthly +package-linux-amd64-deb
|
|
|
|
- earthly +package-linux-amd64-rpm
|
2023-06-22 20:38:04 -05:00
|
|
|
- /home/gitlab-runner/distribute-packages.sh
|
2023-07-04 11:34:48 -05:00
|
|
|
|
2023-07-04 13:31:02 -05:00
|
|
|
deploy_repos:
|
2023-07-04 11:34:48 -05:00
|
|
|
stage: distribute
|
2023-07-04 11:36:25 -05:00
|
|
|
only:
|
|
|
|
- stable
|
2023-07-04 14:30:56 -05:00
|
|
|
needs:
|
2023-07-04 14:53:54 -05:00
|
|
|
- package_amd64
|
2023-07-04 11:36:25 -05:00
|
|
|
tags:
|
|
|
|
- repo-setup
|
|
|
|
script:
|
2023-07-04 14:21:03 -05:00
|
|
|
- /home/gitlab-runner/deploy-repo.sh
|