Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update tag of gitlab runner #36

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions {{cookiecutter.project_slug}}/ci/gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ before_script:
{{ cookiecutter.project_slug }}-build:
stage: build
tags:
- ubuntu_DOCKER
- DOCKER_modern
script:
- echo "$SC_CI_TESTING_REGISTRY_PASSWORD" | docker login -u "$SC_CI_TESTING_REGISTRY_USER" --password-stdin $SC_CI_TESTING_REGISTRY
- cd $SC_CI_{{ cookiecutter.project_package_name.upper() }}_LOCATION
Expand All @@ -42,7 +42,7 @@ before_script:
remove_{{ cookiecutter.project_slug }}_builds:
stage: build
tags:
- ubuntu_DOCKER
- DOCKER_modern
only:
refs:
- branches
Expand All @@ -62,7 +62,7 @@ remove_{{ cookiecutter.project_slug }}_builds:
stage: test
needs: []
tags:
- ubuntu_DOCKER
- DOCKER_modern
script:
- cd $SC_CI_{{ cookiecutter.project_package_name.upper() }}_LOCATION
- make devenv
Expand All @@ -83,7 +83,7 @@ remove_{{ cookiecutter.project_slug }}_builds:
{{ cookiecutter.project_slug }}-integration-test:
stage: test
tags:
- ubuntu_DOCKER
- DOCKER_modern
needs: ["{{ cookiecutter.project_slug }}-build"]
script:
- echo "$SC_CI_TESTING_REGISTRY_PASSWORD" | docker login -u "$SC_CI_TESTING_REGISTRY_USER" --password-stdin $SC_CI_TESTING_REGISTRY
Expand All @@ -110,7 +110,7 @@ remove_{{ cookiecutter.project_slug }}_builds:
stage: deploy
needs: ["{{ cookiecutter.project_slug }}-unit-test", "{{ cookiecutter.project_slug }}-integration-test"]
tags:
- ubuntu_DOCKER
- DOCKER_modern
only:
refs:
- master
Expand Down