Skip to content
Snippets Groups Projects

CI/CD

Merged Tom Teichler requested to merge ci-cd into master
1 file
+ 28
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 28
0
.earthly_prepare:
tags:
- privileged
image:
name: earthly/earthly:v0.6.29@sha256:81eaf447132541b930d64cbf3308ba07303928a073c602e81a237799b60f254d
entrypoint: [ "sh", "-c" ]
before_script:
- earthly --version
- cat ${EARTHLY_CONFIG}
variables:
FORCE_COLOR: "1"
EARTHLY_CONFIG: "/etc/earthly/config.yaml"
EARTHLY_STRICT: "true"
interruptible: true
retry:
max: 2
when:
- runner_system_failure
- stuck_or_timeout_failure
test:
stage: test
extends: [.earthly_prepare]
script:
- earthly --no-output -P +test
only:
refs:
- merge_requests
Loading