mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
ea16fa10ab
This allow us to decouple our test-ci from the release-ci and is necessary for multiple release channels in the future. E.g. we can run a master build without it directly beeing pushed to watchtower and airshipper (config setting requiered on airshipper) Adjust Tags for server-cli
56 lines
1.7 KiB
YAML
56 lines
1.7 KiB
YAML
# Publishes veloren-server-cli to the gitlab container registry
|
|
# https://gitlab.com/veloren/veloren/container_registry
|
|
.publish:
|
|
stage: publish
|
|
tags:
|
|
- veloren-docker
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE != "schedule"
|
|
when: always
|
|
- when: never
|
|
|
|
.publish-nightly:
|
|
stage: publish
|
|
tags:
|
|
- veloren-docker
|
|
rules:
|
|
- if: $CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
when: always
|
|
- when: never
|
|
|
|
docker:
|
|
extends: .publish
|
|
image:
|
|
name: gcr.io/kaniko-project/executor:debug
|
|
entrypoint: [""]
|
|
dependencies:
|
|
- linux
|
|
before_script:
|
|
- ls "$CI_PROJECT_DIR/server-cli/"
|
|
script:
|
|
- 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/server-cli/Dockerfile --destination "${CI_REGISTRY_IMAGE}/server-cli:${CI_COMMIT_REF_NAME}"
|
|
|
|
docker-nightly:
|
|
extends: .publish-nightly
|
|
image:
|
|
name: gcr.io/kaniko-project/executor:debug
|
|
entrypoint: [""]
|
|
dependencies:
|
|
- linux
|
|
before_script:
|
|
- ls "$CI_PROJECT_DIR/server-cli/"
|
|
script:
|
|
- 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/server-cli/Dockerfile --destination "${CI_REGISTRY_IMAGE}/server-cli:nightly"
|
|
|
|
pages:
|
|
extends: .publish
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
script:
|
|
- rm -rf public
|
|
- mkdir -p public
|
|
- cargo doc --no-deps --document-private-items
|
|
- mv target/doc/* public |