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
|
|
|
|
- distribute
|
2021-11-24 21:49:13 +00:00
|
|
|
|
2022-11-22 22:16:53 +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 00:18:45 +00:00
|
|
|
- test-caching
|
|
|
|
- merge_requests
|
2023-06-21 02:46:05 +00:00
|
|
|
tags:
|
|
|
|
- linux
|
|
|
|
- amd64
|
2023-06-23 00:18:45 +00:00
|
|
|
before_script:
|
2023-06-23 00:20:28 +00:00
|
|
|
- echo "${REGISTRY_PASSWORD:?}" | docker login --password-stdin -u "${REGISTRY_USER:?}" -- "${CI_REGISTRY:?}"
|
2023-06-21 02:46:05 +00:00
|
|
|
script:
|
2023-06-23 00:18:45 +00:00
|
|
|
- earthly --ci --remote-cache=veilid/main-branch-cache:cache +unit-tests-linux-amd64
|
|
|
|
when: manual
|
2023-06-21 02:46:05 +00:00
|
|
|
|
|
|
|
distribute_amd64:
|
|
|
|
stage: distribute
|
|
|
|
needs:
|
2023-06-23 00:18:45 +00:00
|
|
|
- job: test_amd64
|
2023-06-21 02:46:05 +00:00
|
|
|
only:
|
2023-06-23 00:18:45 +00:00
|
|
|
- test-caching
|
2023-06-21 02:46:05 +00:00
|
|
|
tags:
|
|
|
|
- linux
|
|
|
|
- amd64
|
2023-06-23 00:18:45 +00:00
|
|
|
before_script:
|
2023-06-23 00:20:28 +00:00
|
|
|
- echo "${REGISTRY_PASSWORD:?}" | docker login --password-stdin -u "${REGISTRY_USER:?}" -- "${CI_REGISTRY:?}"
|
2023-06-21 02:46:05 +00:00
|
|
|
script:
|
2023-06-23 00:18:45 +00:00
|
|
|
- earthly --remote-cache=veilid/main-branch-cache:cache +package-linux-amd64
|
|
|
|
# - /home/gitlab-runner/distribute-packages.sh
|