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
|
2023-07-16 12:04:23 -05:00
|
|
|
- build_packages
|
2023-07-31 19:59:23 -05:00
|
|
|
- release
|
2023-06-20 21:46:05 -05:00
|
|
|
- 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-08-22 14:36:33 -05:00
|
|
|
# create_test_machine:
|
|
|
|
# stage: test
|
|
|
|
# only:
|
|
|
|
# - main
|
|
|
|
# - merge_requests
|
|
|
|
# tags:
|
|
|
|
# - build-orchestration
|
|
|
|
# script:
|
|
|
|
# - /home/gitlab-runner/build-machine-ctl.sh create amd64-deb
|
|
|
|
# when: manual
|
2023-07-22 12:07:00 -05:00
|
|
|
|
2023-06-20 21:46:05 -05:00
|
|
|
test_amd64:
|
|
|
|
stage: test
|
2023-08-22 14:59:59 -05:00
|
|
|
image: earthly/earthly:v0.7.15
|
|
|
|
# only:
|
|
|
|
# - main
|
|
|
|
# - merge_requests
|
2023-06-20 21:46:05 -05:00
|
|
|
script:
|
2023-08-22 14:59:59 -05:00
|
|
|
- earthly bootstrap
|
2023-06-22 19:47:11 -05:00
|
|
|
- earthly --ci +unit-tests-linux-amd64
|
2023-06-20 21:46:05 -05:00
|
|
|
|
2023-08-22 14:36:33 -05:00
|
|
|
# delete_test_machine:
|
|
|
|
# stage: test
|
|
|
|
# only:
|
|
|
|
# - main
|
|
|
|
# - merge_requests
|
|
|
|
# needs:
|
|
|
|
# - test_amd64
|
|
|
|
# tags:
|
|
|
|
# - build-orchestration
|
|
|
|
# script:
|
|
|
|
# - /home/gitlab-runner/build-machine-ctl.sh delete amd64-deb
|
2023-07-22 12:07:00 -05:00
|
|
|
|
2023-07-31 20:23:36 -05:00
|
|
|
release_job:
|
|
|
|
stage: release
|
2023-07-31 22:25:58 -05:00
|
|
|
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
2023-07-31 20:23:36 -05:00
|
|
|
script:
|
|
|
|
- echo "running release_job"
|
|
|
|
release: # See https://docs.gitlab.com/ee/ci/yaml/#release for available properties
|
|
|
|
tag_name: '$CI_COMMIT_TAG'
|
|
|
|
description: '$CI_COMMIT_TAG'
|
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
|
|
|
|
2023-07-21 14:30:33 -05:00
|
|
|
create_build_machines:
|
|
|
|
stage: build_packages
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
|
|
|
- /home/gitlab-runner/build-machine-ctl.sh create amd64-deb
|
|
|
|
- /home/gitlab-runner/build-machine-ctl.sh create arm64-deb
|
|
|
|
- /home/gitlab-runner/build-machine-ctl.sh create amd64-rpm
|
2023-07-31 20:08:41 -05:00
|
|
|
rules:
|
2023-07-31 20:23:36 -05:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-31 20:08:41 -05:00
|
|
|
|
2023-07-16 12:04:23 -05:00
|
|
|
package_amd64_deb:
|
|
|
|
stage: build_packages
|
2023-07-21 14:30:33 -05:00
|
|
|
needs:
|
|
|
|
- create_build_machines
|
2023-06-20 21:46:05 -05:00
|
|
|
tags:
|
2023-07-16 12:04:23 -05:00
|
|
|
- build-amd64-deb
|
2023-06-20 21:46:05 -05:00
|
|
|
script:
|
2023-07-04 13:31:02 -05:00
|
|
|
- earthly bootstrap
|
2023-07-03 21:50:50 -05:00
|
|
|
- earthly +package-linux-amd64-deb
|
2023-07-16 14:18:35 -05:00
|
|
|
- /home/gitlab-runner/scp-to-orchestrator.sh
|
2023-07-31 20:08:41 -05:00
|
|
|
rules:
|
2023-07-31 20:23:36 -05:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-31 22:25:58 -05:00
|
|
|
|
2023-07-16 12:04:23 -05:00
|
|
|
package_arm64_deb:
|
|
|
|
stage: build_packages
|
2023-07-21 14:30:33 -05:00
|
|
|
needs:
|
|
|
|
- create_build_machines
|
2023-07-16 12:04:23 -05:00
|
|
|
tags:
|
|
|
|
- build-arm64-deb
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
2023-07-14 23:37:30 -05:00
|
|
|
- earthly +package-linux-arm64-deb
|
2023-07-16 14:18:35 -05:00
|
|
|
- /home/gitlab-runner/scp-to-orchestrator.sh
|
2023-07-31 20:08:41 -05:00
|
|
|
rules:
|
2023-07-31 20:23:36 -05:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-04 11:34:48 -05:00
|
|
|
|
2023-07-16 12:04:23 -05:00
|
|
|
package_amd64_rpm:
|
|
|
|
stage: build_packages
|
2023-07-21 14:30:33 -05:00
|
|
|
needs:
|
|
|
|
- create_build_machines
|
2023-07-16 12:04:23 -05:00
|
|
|
tags:
|
|
|
|
- build-amd64-rpm
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
|
|
|
- earthly +package-linux-amd64-rpm
|
2023-07-16 14:18:35 -05:00
|
|
|
- /home/gitlab-runner/scp-to-orchestrator.sh
|
2023-07-31 20:08:41 -05:00
|
|
|
rules:
|
2023-07-31 20:23:36 -05:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-31 19:59:23 -05:00
|
|
|
|
2023-07-16 14:18:35 -05:00
|
|
|
build_repositories:
|
|
|
|
stage: distribute
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
|
|
|
- /home/gitlab-runner/distribute-packages.sh
|
2023-07-31 20:08:41 -05:00
|
|
|
rules:
|
2023-07-31 20:23:36 -05:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-16 14:18:35 -05:00
|
|
|
|
|
|
|
deploy_repos:
|
|
|
|
stage: distribute
|
|
|
|
needs:
|
|
|
|
- build_repositories
|
|
|
|
tags:
|
|
|
|
- repo-server
|
|
|
|
script:
|
2023-07-16 18:51:24 -05:00
|
|
|
- /home/gitlab-runner/deploy-repo.sh
|
2023-08-02 09:14:18 -05:00
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
|
|
|
|
|
|
|
delete_build_machines:
|
|
|
|
stage: distribute
|
|
|
|
needs:
|
|
|
|
- deploy_repos
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
|
|
|
- /home/gitlab-runner/build-machine-ctl.sh delete amd64-deb
|
|
|
|
- /home/gitlab-runner/build-machine-ctl.sh delete arm64-deb
|
|
|
|
- /home/gitlab-runner/build-machine-ctl.sh delete amd64-rpm
|
2023-07-31 20:08:41 -05:00
|
|
|
rules:
|
2023-07-31 22:30:11 -05:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|