30 lines
694 B
YAML
30 lines
694 B
YAML
default:
|
|
image: quay.io/podman/stable
|
|
cache:
|
|
key: image-cache
|
|
paths:
|
|
- /var/lib/containers/storage
|
|
- /run/containers/storage
|
|
- .local/share/containers/storage
|
|
before_script:
|
|
- git submodule update --init
|
|
- podman login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
|
|
|
variables:
|
|
DOCKER_TLS_CERTDIR: "/certs"
|
|
IMAGE_TAG: "${CI_COMMIT_REF_SLUG}"
|
|
|
|
stages:
|
|
- build_and_test
|
|
|
|
splatoon:
|
|
stage: build_and_test
|
|
script: ./.ci-scripts/make-edition.sh splatoon
|
|
|
|
friends:
|
|
stage: build_and_test
|
|
script: ./.ci-scripts/make-edition.sh friends
|
|
|
|
super-mario-maker:
|
|
stage: build_and_test
|
|
script: ./.ci-scripts/make-edition.sh super-mario-maker
|