X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.gitlab-ci.yml;h=6b6bd6dad974cc9c6d2cfb5f18c6a76011bf9038;hb=25230068fe3afb9d1faa9c606413784294700cef;hp=fdf2bb726fb1266033cc651977fe8df5deaac43e;hpb=4446c61d5fcde70839a8cf3bc88b8463af0e5242;p=open-adventure.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdf2bb7..6b6bd6d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,52 +1,52 @@ -image: alpine - +# SPDX-FileCopyrightText: Eric S. Raymond +# SPDX-License-Identifier: BSD-2-Clause stages: + - ci-build - build - test - deploy +default: + image: $CI_REGISTRY_IMAGE:ci + +# build and push Docker image to be used in subsequent steps +ci-build: + stage: ci-build + image: + name: gcr.io/kaniko-project/executor:debug + entrypoint: [""] + script: + - mkdir -p /kaniko/.docker + - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json + - /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile.ci --destination $CI_REGISTRY_IMAGE:ci --cache=true + # build advent itself binary:debug: stage: build - before_script: - - apk update - - apk add make gcc musl-dev python3 libedit-dev - - pip3 install PyYAML script: - make debug artifacts: paths: - advent - cheat - - "*.gcda" - - "*.gcno" - # cache outputs to reduce the build time - cache: - paths: - "*.o" + - dungeon.c + - dungeon.h binary:release: stage: build - before_script: - - apk update - - apk add make gcc musl-dev python3 libedit-dev - - pip3 install PyYAML script: - make advent cheat artifacts: paths: - advent - cheat - # cache outputs to reduce the build time - cache: - paths: - "*.o" + - dungeon.c + - dungeon.h manpage: stage: build - before_script: - - apk update - - apk add make asciidoc script: - make advent.6 artifacts: @@ -55,9 +55,6 @@ manpage: html: stage: build - before_script: - - apk update - - apk add make asciidoc libxslt script: - make html artifacts: @@ -66,9 +63,6 @@ html: dist: stage: build - before_script: - - apk update - - apk add make asciidoc script: - export VERS=${CI_COMMIT_REF_NAME} - make dist -e @@ -79,16 +73,8 @@ dist: # run tests using the binary built before test:debug: stage: test - before_script: - - apk update - - apk add make gcc python3 libedit-dev - - pip3 install PyYAML - - apk add lcov --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted script: - - cd tests - - make - make coverage - - cd .. artifacts: paths: - coverage @@ -97,9 +83,6 @@ test:debug: test:release: stage: test - before_script: - - apk update - - apk add make libedit script: - cd tests - make