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