Skip to content

Commit

Permalink
update tag of gitlab runner (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg authored Sep 7, 2020
1 parent 948cf86 commit 929ebab
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 929ebab

Please sign in to comment.