veilid/.gitlab-ci.yml

145 lines
3.1 KiB
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
2023-07-16 17:04:23 +00:00
- build_packages
- release
- 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
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
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
needs:
- create_test_machine
tags:
- earthly-tests
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
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-08-01 01:23:36 +00:00
release_job:
stage: release
2023-08-01 03:25:58 +00:00
image: registry.gitlab.com/gitlab-org/release-cli:latest
2023-08-01 01:23:36 +00: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.+/'
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
rules:
2023-08-01 01:23:36 +00:00
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
2023-07-16 17:04:23 +00:00
package_amd64_deb:
stage: build_packages
needs:
- create_build_machines
tags:
2023-07-16 17:04:23 +00:00
- build-amd64-deb
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
rules:
2023-08-01 01:23:36 +00:00
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
2023-08-01 03:25:58 +00:00
2023-07-16 17:04:23 +00:00
package_arm64_deb:
stage: build_packages
needs:
- create_build_machines
2023-07-16 17:04:23 +00:00
tags:
- build-arm64-deb
script:
- earthly bootstrap
- earthly +package-linux-arm64-deb
2023-07-16 19:18:35 +00:00
- /home/gitlab-runner/scp-to-orchestrator.sh
rules:
2023-08-01 01:23:36 +00:00
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
2023-07-04 16:34:48 +00:00
2023-07-16 17:04:23 +00:00
package_amd64_rpm:
stage: build_packages
needs:
- create_build_machines
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
rules:
2023-08-01 01:23:36 +00:00
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
2023-07-16 19:18:35 +00:00
build_repositories:
stage: distribute
tags:
- build-orchestration
script:
- /home/gitlab-runner/distribute-packages.sh
rules:
2023-08-01 01:23:36 +00:00
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
2023-07-16 19:18:35 +00:00
deploy_repos:
stage: distribute
needs:
- build_repositories
tags:
- repo-server
script:
2023-07-16 23:51:24 +00:00
- /home/gitlab-runner/deploy-repo.sh
2023-08-02 14:14:18 +00: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
rules:
2023-08-01 03:30:11 +00:00
- if: '$CI_COMMIT_TAG =~ /v\d.+/'