2021-11-26 09:54:38 -05:00
|
|
|
variables:
|
2022-11-22 15:16:53 -07:00
|
|
|
NO_DOCKER: 1
|
|
|
|
FORCE_COLOR: 1
|
|
|
|
EARTHLY_EXEC_CMD: "/bin/sh"
|
2022-11-26 22:18:08 -07:00
|
|
|
GIT_SUBMODULE_STRATEGY: normal
|
2021-11-26 09:54:38 -05:00
|
|
|
|
2023-02-20 12:14:05 -07:00
|
|
|
stages:
|
2023-10-31 11:17:13 +00:00
|
|
|
- prepare
|
2023-06-21 02:46:05 +00:00
|
|
|
- test
|
2023-07-16 17:04:23 +00:00
|
|
|
- build_packages
|
2023-08-01 00:59:23 +00:00
|
|
|
- release
|
2023-06-21 02:46:05 +00:00
|
|
|
- distribute
|
2021-11-24 16:49:13 -05:00
|
|
|
|
2023-10-31 11:17:13 +00:00
|
|
|
# base earthly setup for jobs
|
|
|
|
.base:
|
|
|
|
tags: [ saas-linux-medium-amd64 ]
|
2023-08-27 17:17:29 +00:00
|
|
|
image: docker
|
|
|
|
services:
|
|
|
|
- docker:dind
|
2023-10-31 11:17:13 +00:00
|
|
|
|
|
|
|
.earthly: &earthly_setup
|
|
|
|
- apk update && apk add git
|
|
|
|
- wget https://github.com/earthly/earthly/releases/download/v0.7.15/earthly-linux-amd64 -O /usr/local/bin/earthly
|
|
|
|
- chmod +x /usr/local/bin/earthly
|
|
|
|
- earthly bootstrap
|
|
|
|
- echo $CI_REGISTRY_PASSWORD | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
|
2023-12-25 13:14:23 -08:00
|
|
|
- test "$CI_PROJECT_PATH" != "veilid/veilid" && project_args="--CI_REGISTRY_IMAGE=$CI_REGISTRY_IMAGE"
|
2023-10-31 11:17:13 +00:00
|
|
|
|
|
|
|
# Create the build container if:
|
|
|
|
# - no container in the registry
|
|
|
|
# - run as part of a schedule
|
|
|
|
# - run manually from the pipelines web page
|
|
|
|
build_cache:
|
|
|
|
extends: .base
|
|
|
|
stage: prepare
|
|
|
|
script:
|
2023-12-25 13:14:23 -08:00
|
|
|
- if ! docker manifest inspect $CI_REGISTRY_IMAGE/build-cache:latest > /dev/null || [[ "$CI_PIPELINE_SOURCE" == "schedule" ]] || [[ "$CI_PIPELINE_SOURCE" == "web" ]] ; then
|
2023-10-31 11:17:13 +00:00
|
|
|
- *earthly_setup
|
|
|
|
- earthly --use-inline-cache --save-inline-cache --strict --push -P +build-linux-cache $project_args
|
|
|
|
- else
|
|
|
|
- echo "No need to rebuild"
|
|
|
|
- fi
|
|
|
|
|
|
|
|
# Runs a basic unit test build, this task will use the `build-cache:latest` as set up in the projects Container Registry
|
|
|
|
test_build:
|
|
|
|
extends: .base
|
|
|
|
stage: test
|
2023-08-22 21:49:55 +00:00
|
|
|
only:
|
2023-09-03 19:43:46 -05:00
|
|
|
- main
|
2023-10-31 11:17:13 +00:00
|
|
|
- pushes
|
2023-08-27 17:17:29 +00:00
|
|
|
- merge_requests
|
|
|
|
script:
|
2023-10-31 11:17:13 +00:00
|
|
|
- *earthly_setup
|
|
|
|
- earthly --use-inline-cache +unit-tests-linux --BASE=container $project_args
|
2023-08-27 17:17:29 +00:00
|
|
|
resource_group: test
|
2023-11-03 01:48:07 +00:00
|
|
|
# when: manual
|
2023-07-22 17:07:00 +00:00
|
|
|
|
2023-08-01 01:23:36 +00:00
|
|
|
release_job:
|
|
|
|
stage: release
|
2023-08-27 17:17:29 +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.+/'
|
|
|
|
|
2023-07-21 19:30:33 +00: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-08-01 01:08:41 +00:00
|
|
|
rules:
|
2023-08-01 01:23:36 +00:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-08-01 01:08:41 +00:00
|
|
|
|
2023-07-16 17:04:23 +00:00
|
|
|
package_amd64_deb:
|
|
|
|
stage: build_packages
|
2023-07-21 19:30:33 +00:00
|
|
|
needs:
|
|
|
|
- create_build_machines
|
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-08-01 01:08:41 +00:00
|
|
|
rules:
|
2023-08-01 01:23:36 +00:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-08-27 17:17:29 +00:00
|
|
|
|
2023-07-16 17:04:23 +00:00
|
|
|
package_arm64_deb:
|
|
|
|
stage: build_packages
|
2023-07-21 19:30:33 +00:00
|
|
|
needs:
|
|
|
|
- create_build_machines
|
2023-07-16 17:04:23 +00:00
|
|
|
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-08-01 01:08:41 +00:00
|
|
|
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
|
2023-07-21 19:30:33 +00:00
|
|
|
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
|
2023-08-01 01:08:41 +00:00
|
|
|
rules:
|
2023-08-01 01:23:36 +00:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-08-01 00:59:23 +00:00
|
|
|
|
2023-07-16 19:18:35 +00:00
|
|
|
build_repositories:
|
|
|
|
stage: distribute
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
|
|
|
- /home/gitlab-runner/distribute-packages.sh
|
2024-03-03 21:19:21 +00:00
|
|
|
- vlt login
|
|
|
|
- vlt run --command="cargo publish -p veilid-tools --dry-run"
|
|
|
|
- vlt run --command="cargo publish -p veilid-tools"
|
|
|
|
- vlt run --command="cargo publish -p veilid-core --dry-run"
|
|
|
|
- vlt run --command="cargo publish -p veilid-core"
|
|
|
|
- cd veilid-python && /home/gitlab-runner/.local/bin/poetry build
|
|
|
|
- vlt run --command="/home/gitlab-runner/.local/bin/poetry publish"
|
2023-08-01 01:08:41 +00:00
|
|
|
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
|
2023-08-01 01:08:41 +00:00
|
|
|
rules:
|
2023-08-27 17:17:29 +00:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|