2021-11-26 14:54:38 +00:00
|
|
|
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
|
2021-11-26 14:54:38 +00:00
|
|
|
|
2023-02-20 19:14:05 +00:00
|
|
|
stages:
|
2023-06-21 02:46:05 +00:00
|
|
|
- test
|
2023-07-16 17:04:23 +00:00
|
|
|
- build_packages
|
2023-06-21 02:46:05 +00:00
|
|
|
- distribute
|
2021-11-24 21:49:13 +00:00
|
|
|
|
2023-07-04 18:31:02 +00:00
|
|
|
#before_script:
|
|
|
|
# - earthly bootstrap
|
2021-12-05 20:22:28 +00:00
|
|
|
|
2023-06-21 02:46:05 +00:00
|
|
|
test_amd64:
|
|
|
|
stage: test
|
2023-06-23 00:18:45 +00:00
|
|
|
image: earthly/earthly:v0.6.30
|
2023-06-21 02:46:05 +00:00
|
|
|
only:
|
2023-06-23 01:38:04 +00:00
|
|
|
- main
|
2023-06-23 00:18:45 +00:00
|
|
|
- merge_requests
|
2023-06-21 02:46:05 +00:00
|
|
|
tags:
|
2023-07-05 01:04:01 +00:00
|
|
|
- build-server
|
2023-06-21 02:46:05 +00:00
|
|
|
script:
|
2023-07-04 18:31:02 +00:00
|
|
|
- earthly bootstrap
|
2023-06-23 00:47:11 +00:00
|
|
|
- earthly --ci +unit-tests-linux-amd64
|
2023-06-23 00:18:45 +00:00
|
|
|
when: manual
|
2023-06-21 02:46:05 +00:00
|
|
|
|
2023-07-16 17:04:23 +00:00
|
|
|
package_amd64_deb:
|
|
|
|
stage: build_packages
|
2023-06-21 02:46:05 +00:00
|
|
|
only:
|
2023-06-23 13:18:15 +00:00
|
|
|
- stable
|
2023-06-21 02:46:05 +00:00
|
|
|
tags:
|
2023-07-16 17:04:23 +00:00
|
|
|
- build-amd64-deb
|
2023-06-21 02:46:05 +00:00
|
|
|
script:
|
2023-07-04 18:31:02 +00:00
|
|
|
- earthly bootstrap
|
2023-07-04 02:50:50 +00:00
|
|
|
- earthly +package-linux-amd64-deb
|
2023-07-16 19:18:35 +00:00
|
|
|
- /home/gitlab-runner/scp-to-orchestrator.sh
|
2023-07-16 17:04:23 +00:00
|
|
|
|
|
|
|
package_arm64_deb:
|
|
|
|
stage: build_packages
|
|
|
|
only:
|
|
|
|
- stable
|
|
|
|
tags:
|
|
|
|
- build-arm64-deb
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
2023-07-15 04:37:30 +00:00
|
|
|
- earthly +package-linux-arm64-deb
|
2023-07-16 19:18:35 +00:00
|
|
|
- /home/gitlab-runner/scp-to-orchestrator.sh
|
2023-07-04 16:34:48 +00:00
|
|
|
|
2023-07-16 17:04:23 +00:00
|
|
|
package_amd64_rpm:
|
|
|
|
stage: build_packages
|
2023-07-04 16:36:25 +00:00
|
|
|
only:
|
|
|
|
- stable
|
2023-07-16 17:04:23 +00:00
|
|
|
tags:
|
|
|
|
- build-amd64-rpm
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
|
|
|
- earthly +package-linux-amd64-rpm
|
2023-07-16 19:18:35 +00:00
|
|
|
- /home/gitlab-runner/scp-to-orchestrator.sh
|
2023-07-16 19:46:32 +00:00
|
|
|
|
2023-07-16 19:18:35 +00:00
|
|
|
build_repositories:
|
|
|
|
stage: distribute
|
|
|
|
only:
|
|
|
|
- stable
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
|
|
|
- /home/gitlab-runner/distribute-packages.sh
|
|
|
|
|
|
|
|
deploy_repos:
|
|
|
|
stage: distribute
|
|
|
|
only:
|
|
|
|
- stable
|
|
|
|
needs:
|
|
|
|
- build_repositories
|
|
|
|
tags:
|
|
|
|
- repo-server
|
|
|
|
script:
|
2023-07-16 21:07:41 +00:00
|
|
|
- /home/gitlab-runner/deploy-repo.sh
|