Support for tags #1403
Unanswered
bjornpiltz
asked this question in
Q&A
Replies: 2 comments 1 reply
-
Paste and as simple as possible That way we have a chance to understand, what you are talking about :D |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sorry, I was thinking of something like this. Now stages:
- build
build:msvc:
stage: build
tags:
- msvc
script:
- echo "Running on Windows machine."
- cmake.exe ...
build:gcc:
image: alpine:latest
stage: build
tags:
- docker
script:
- echo "Running on Linux in a docker image." |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am feeling like I am missing something really simple here. How do I run just the jobs in my pipeline which are tagged "docker"?
Beta Was this translation helpful? Give feedback.
All reactions