veilid/.gitlab-ci.yml
John Smith cd9a3414cf merge
2023-06-19 15:27:10 -04:00

39 lines
651 B
YAML

variables:
NO_DOCKER: 1
FORCE_COLOR: 1
EARTHLY_EXEC_CMD: "/bin/sh"
GIT_SUBMODULE_STRATEGY: normal
stages:
- linux-amd64
# - linux-arm64
before_script:
- earthly bootstrap
earthly-amd64:
stage: linux-amd64
only:
- main
- merge_requests
image: earthly/earthly:v0.6.30
tags:
- linux
- amd64
script:
- echo "disabled for now"
# - earthly --ci -P +package-linux-amd64
#earthly-arm64:
# stage: linux-arm64
# only:
# - main
# - merge_requests
# image: earthly/earthly:v0.6.30
# tags:
# - linux
# - amd64
# script:
# - echo "disabled for now"
# # - earthly --ci -P +package-linux-arm64