Files
unison/utils/tests/gitlab-ci-alpine.yml
2022-08-13 17:07:48 +00:00

30 lines
630 B
YAML

# NS3 CI script for Alpine
# Any scheduled pipeline for Alpine should define a variable, named
# "RELEASE", that has a value "weekly". Also, the variable "ALPINE" should be
# set to True.
# Alpine base
.weekly-build-alpine:
extends: .base-build
only:
variables:
- $RELEASE == "weekly"
- $ALPINE == "True"
variables:
COMPILER: g++
weekly-build-alpine-latest-default:
extends: .weekly-build-alpine
image: alpine:latest
before_script:
- apk update
- apk upgrade
- apk add
g++ cmake ninja ccache
python3
bash
iproute2 linux-headers
variables:
MODE: default