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-10-31 07:17:13 -04:00
|
|
|
- prepare
|
2023-06-20 22:46:05 -04:00
|
|
|
- test
|
2023-07-16 13:04:23 -04:00
|
|
|
- build_packages
|
2023-07-31 20:59:23 -04:00
|
|
|
- release
|
2023-06-20 22:46:05 -04:00
|
|
|
- distribute
|
2021-11-24 16:49:13 -05:00
|
|
|
|
2023-10-31 07:17:13 -04:00
|
|
|
# base earthly setup for jobs
|
|
|
|
.base:
|
|
|
|
tags: [ saas-linux-medium-amd64 ]
|
2023-08-27 13:17:29 -04:00
|
|
|
image: docker
|
|
|
|
services:
|
|
|
|
- docker:dind
|
2023-10-31 07:17:13 -04: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 16:14:23 -05:00
|
|
|
- test "$CI_PROJECT_PATH" != "veilid/veilid" && project_args="--CI_REGISTRY_IMAGE=$CI_REGISTRY_IMAGE"
|
2023-10-31 07:17:13 -04: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 16:14:23 -05: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 07:17:13 -04: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
|
2024-04-29 18:07:40 -04:00
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
|
|
|
- when: never
|
|
|
|
|
2023-10-31 07:17:13 -04:00
|
|
|
|
|
|
|
# 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 17:49:55 -04:00
|
|
|
only:
|
2023-09-03 20:43:46 -04:00
|
|
|
- main
|
2023-10-31 07:17:13 -04:00
|
|
|
- pushes
|
2023-08-27 13:17:29 -04:00
|
|
|
- merge_requests
|
|
|
|
script:
|
2023-10-31 07:17:13 -04:00
|
|
|
- *earthly_setup
|
|
|
|
- earthly --use-inline-cache +unit-tests-linux --BASE=container $project_args
|
2023-08-27 13:17:29 -04:00
|
|
|
resource_group: test
|
2024-04-29 18:07:40 -04:00
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
|
|
|
- when: never
|
2023-07-22 13:07:00 -04:00
|
|
|
|
2024-04-29 15:40:07 -04:00
|
|
|
# Actual release -- triggered by pushing a new version tag
|
|
|
|
|
2023-07-31 21:23:36 -04:00
|
|
|
release_job:
|
|
|
|
stage: release
|
2023-08-27 13:17:29 -04:00
|
|
|
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
2023-07-31 21:23:36 -04: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 15:30:33 -04:00
|
|
|
create_build_machines:
|
|
|
|
stage: build_packages
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
2024-04-28 21:39:18 -04:00
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh create amd64-deb
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh create arm64-deb
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh create amd64-rpm
|
2023-07-31 21:08:41 -04:00
|
|
|
rules:
|
2023-07-31 21:23:36 -04:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-31 21:08:41 -04:00
|
|
|
|
2023-07-16 13:04:23 -04:00
|
|
|
package_amd64_deb:
|
|
|
|
stage: build_packages
|
2023-07-21 15:30:33 -04:00
|
|
|
needs:
|
|
|
|
- create_build_machines
|
2023-06-20 22:46:05 -04:00
|
|
|
tags:
|
2023-07-16 13:04:23 -04:00
|
|
|
- build-amd64-deb
|
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
|
2024-04-29 18:07:40 -04:00
|
|
|
- bash scripts/cicd/build-machine/scp-amd64-debs-to-orchestrator.sh
|
2023-07-31 21:08:41 -04:00
|
|
|
rules:
|
2023-07-31 21:23:36 -04:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-08-27 13:17:29 -04:00
|
|
|
|
2023-07-16 13:04:23 -04:00
|
|
|
package_arm64_deb:
|
|
|
|
stage: build_packages
|
2023-07-21 15:30:33 -04:00
|
|
|
needs:
|
|
|
|
- create_build_machines
|
2023-07-16 13:04:23 -04:00
|
|
|
tags:
|
|
|
|
- build-arm64-deb
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
2023-07-15 00:37:30 -04:00
|
|
|
- earthly +package-linux-arm64-deb
|
2024-04-29 18:07:40 -04:00
|
|
|
- bash scripts/cicd/build-machine/scp-arm64-debs-to-orchestrator.sh
|
2023-07-31 21:08:41 -04:00
|
|
|
rules:
|
2023-07-31 21:23:36 -04:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-04 12:34:48 -04:00
|
|
|
|
2023-07-16 13:04:23 -04:00
|
|
|
package_amd64_rpm:
|
|
|
|
stage: build_packages
|
2023-07-21 15:30:33 -04:00
|
|
|
needs:
|
|
|
|
- create_build_machines
|
2023-07-16 13:04:23 -04:00
|
|
|
tags:
|
|
|
|
- build-amd64-rpm
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
|
|
|
- earthly +package-linux-amd64-rpm
|
2024-04-29 18:07:40 -04:00
|
|
|
- bash scripts/cicd/build-machine/scp-amd64-rmps-to-orchestrator.sh
|
2023-07-31 21:08:41 -04:00
|
|
|
rules:
|
2023-07-31 21:23:36 -04:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-31 20:59:23 -04:00
|
|
|
|
2024-04-04 19:22:10 -04:00
|
|
|
publish_crates:
|
2024-04-04 20:53:28 -04:00
|
|
|
stage: build_packages
|
2023-07-16 15:18:35 -04:00
|
|
|
tags:
|
2024-04-04 19:22:10 -04:00
|
|
|
- build-amd64-deb
|
2023-07-16 15:18:35 -04:00
|
|
|
script:
|
2024-03-03 16:19:21 -05: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"
|
2024-04-04 19:22:10 -04:00
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
|
|
|
|
|
|
|
publish_python:
|
2024-04-04 20:53:28 -04:00
|
|
|
stage: build_packages
|
2024-04-04 19:22:10 -04:00
|
|
|
tags:
|
|
|
|
- build-amd64-deb
|
|
|
|
script:
|
|
|
|
- vlt login
|
2024-04-28 20:24:45 -04:00
|
|
|
- cd veilid-python && /home/gitlab-runner/.local/bin/poetry build
|
2024-03-03 16:19:21 -05:00
|
|
|
- vlt run --command="/home/gitlab-runner/.local/bin/poetry publish"
|
2023-07-31 21:08:41 -04:00
|
|
|
rules:
|
2023-07-31 21:23:36 -04:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2023-07-16 15:18:35 -04:00
|
|
|
|
2024-04-04 19:22:10 -04:00
|
|
|
build_repositories:
|
|
|
|
stage: distribute
|
2024-04-04 20:46:47 -04:00
|
|
|
needs:
|
|
|
|
- publish_python
|
2024-04-04 19:22:10 -04:00
|
|
|
tags:
|
|
|
|
- build-orchestration
|
2024-04-21 14:37:45 -04:00
|
|
|
variables:
|
|
|
|
SECURE_FILES_DOWNLOAD_PATH: './'
|
2024-04-04 19:22:10 -04:00
|
|
|
script:
|
2024-04-28 20:24:45 -04:00
|
|
|
- cp scripts/cicd/build-orchestration/generate-release.sh ~
|
2024-04-28 21:39:18 -04:00
|
|
|
- bash scripts/cicd/build-orchestration/distribute-packages.sh
|
2024-04-04 19:22:10 -04:00
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
|
|
|
|
2023-07-16 15:18:35 -04:00
|
|
|
deploy_repos:
|
|
|
|
stage: distribute
|
|
|
|
needs:
|
|
|
|
- build_repositories
|
|
|
|
tags:
|
|
|
|
- repo-server
|
|
|
|
script:
|
2024-04-28 21:39:18 -04:00
|
|
|
- bash scripts/cicd/repo-server/deploy-repo.sh
|
2023-08-02 10:14:18 -04:00
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
|
|
|
|
|
|
|
delete_build_machines:
|
|
|
|
stage: distribute
|
|
|
|
needs:
|
|
|
|
- deploy_repos
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
2024-04-28 21:39:18 -04:00
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh delete amd64-deb
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh delete arm64-deb
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh delete amd64-rpm
|
2023-07-31 21:08:41 -04:00
|
|
|
rules:
|
2023-08-27 13:17:29 -04:00
|
|
|
- if: '$CI_COMMIT_TAG =~ /v\d.+/'
|
2024-04-29 15:40:07 -04:00
|
|
|
|
2024-04-29 16:24:04 -04:00
|
|
|
# Dryrun release -- triggered by changes in .gitlab-ci.yml, CICD scripts, or Earthfile
|
2024-04-29 15:40:07 -04:00
|
|
|
|
|
|
|
dryrun_create_build_machines:
|
|
|
|
stage: build_packages
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh create amd64-deb
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh create arm64-deb
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh create amd64-rpm
|
|
|
|
rules:
|
2024-04-29 17:22:58 -04:00
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
2024-04-29 15:40:07 -04:00
|
|
|
|
|
|
|
dryrun_package_amd64_deb:
|
|
|
|
stage: build_packages
|
|
|
|
needs:
|
|
|
|
- dryrun_create_build_machines
|
|
|
|
tags:
|
|
|
|
- build-amd64-deb
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
|
|
|
- earthly +package-linux-amd64-deb
|
2024-04-29 18:07:40 -04:00
|
|
|
- bash scripts/cicd/build-machine/scp-amd64-debs-to-orchestrator.sh
|
2024-04-29 15:40:07 -04:00
|
|
|
rules:
|
2024-04-29 17:22:58 -04:00
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
2024-04-29 15:40:07 -04:00
|
|
|
|
|
|
|
dryrun_package_arm64_deb:
|
|
|
|
stage: build_packages
|
|
|
|
needs:
|
|
|
|
- dryrun_create_build_machines
|
|
|
|
tags:
|
|
|
|
- build-arm64-deb
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
|
|
|
- earthly +package-linux-arm64-deb
|
2024-04-29 18:07:40 -04:00
|
|
|
- bash scripts/cicd/build-machine/scp-arm64-debs-to-orchestrator.sh
|
2024-04-29 15:40:07 -04:00
|
|
|
rules:
|
2024-04-29 17:22:58 -04:00
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
2024-04-29 17:03:38 -04:00
|
|
|
|
2024-04-29 15:40:07 -04:00
|
|
|
dryrun_package_amd64_rpm:
|
|
|
|
stage: build_packages
|
|
|
|
needs:
|
|
|
|
- dryrun_create_build_machines
|
|
|
|
tags:
|
|
|
|
- build-amd64-rpm
|
|
|
|
script:
|
|
|
|
- earthly bootstrap
|
|
|
|
- earthly +package-linux-amd64-rpm
|
2024-04-29 18:07:40 -04:00
|
|
|
- bash scripts/cicd/build-machine/scp-amd64-rmps-to-orchestrator.sh
|
2024-04-29 15:40:07 -04:00
|
|
|
rules:
|
2024-04-29 17:22:58 -04:00
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
2024-04-29 15:40:07 -04:00
|
|
|
|
2024-04-29 16:24:04 -04:00
|
|
|
# dryrun_publish_crates:
|
|
|
|
# stage: build_packages
|
|
|
|
# needs:
|
|
|
|
# - dryrun_create_build_machines
|
|
|
|
# tags:
|
|
|
|
# - build-amd64-deb
|
|
|
|
# script:
|
|
|
|
# - vlt login
|
|
|
|
# - vlt run --command="cargo publish -p veilid-tools --dry-run"
|
|
|
|
# - vlt run --command="cargo publish -p veilid-core --dry-run"
|
|
|
|
# rules:
|
2024-04-29 17:03:38 -04:00
|
|
|
# - if: ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "merge_request_event") && $CI_COMMIT_TAG == NULL
|
2024-04-29 16:24:04 -04:00
|
|
|
# changes:
|
|
|
|
# - .gitlab-ci.yml
|
|
|
|
# - scripts/cicd/**/*
|
|
|
|
# - Earthfile
|
2024-04-29 17:03:38 -04:00
|
|
|
# - package/**/*
|
2024-04-29 15:40:07 -04:00
|
|
|
|
|
|
|
dryrun_publish_python:
|
|
|
|
stage: build_packages
|
|
|
|
needs:
|
|
|
|
- dryrun_create_build_machines
|
|
|
|
tags:
|
|
|
|
- build-amd64-deb
|
|
|
|
script:
|
|
|
|
- cd veilid-python && /home/gitlab-runner/.local/bin/poetry build
|
|
|
|
rules:
|
2024-04-29 17:22:58 -04:00
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
2024-04-29 15:40:07 -04:00
|
|
|
|
|
|
|
dryrun_build_repositories:
|
|
|
|
stage: distribute
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
variables:
|
|
|
|
SECURE_FILES_DOWNLOAD_PATH: './'
|
|
|
|
script:
|
|
|
|
- cp scripts/cicd/build-orchestration/generate-release.sh ~
|
|
|
|
- bash scripts/cicd/build-orchestration/distribute-packages.sh
|
|
|
|
rules:
|
2024-04-29 17:22:58 -04:00
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
2024-04-29 15:40:07 -04:00
|
|
|
|
|
|
|
dryrun_deploy_repos:
|
|
|
|
stage: distribute
|
|
|
|
needs:
|
|
|
|
- dryrun_build_repositories
|
|
|
|
tags:
|
|
|
|
- repo-server
|
|
|
|
script:
|
|
|
|
- ls -al repo.tar
|
|
|
|
rules:
|
2024-04-29 17:22:58 -04:00
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
2024-04-29 15:40:07 -04:00
|
|
|
|
|
|
|
dryrun_delete_build_machines:
|
|
|
|
stage: distribute
|
|
|
|
needs:
|
|
|
|
- dryrun_deploy_repos
|
|
|
|
tags:
|
|
|
|
- build-orchestration
|
|
|
|
script:
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh delete amd64-deb
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh delete arm64-deb
|
|
|
|
- bash scripts/cicd/build-orchestration/build-machine-ctrl.sh delete amd64-rpm
|
|
|
|
rules:
|
2024-04-29 17:26:13 -04:00
|
|
|
- if: $CI_COMMIT_MESSAGE =~ /\[ci dryrun]/
|
|
|
|
|
|
|
|
# Added to test commit message dry run trigger
|