diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 20:03:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 20:03:01 +0000 |
commit | a453ac31f3428614cceb99027f8efbdb9258a40b (patch) | |
tree | f61f87408f32a8511cbd91799f9cececb53e0374 /collections-debian-merged/ansible_collections/hetzner/hcloud/.gitlab-ci.yml | |
parent | Initial commit. (diff) | |
download | ansible-a453ac31f3428614cceb99027f8efbdb9258a40b.tar.xz ansible-a453ac31f3428614cceb99027f8efbdb9258a40b.zip |
Adding upstream version 2.10.7+merged+base+2.10.8+dfsg.upstream/2.10.7+merged+base+2.10.8+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'collections-debian-merged/ansible_collections/hetzner/hcloud/.gitlab-ci.yml')
-rw-r--r-- | collections-debian-merged/ansible_collections/hetzner/hcloud/.gitlab-ci.yml | 164 |
1 files changed, 164 insertions, 0 deletions
diff --git a/collections-debian-merged/ansible_collections/hetzner/hcloud/.gitlab-ci.yml b/collections-debian-merged/ansible_collections/hetzner/hcloud/.gitlab-ci.yml new file mode 100644 index 00000000..57b1b4d1 --- /dev/null +++ b/collections-debian-merged/ansible_collections/hetzner/hcloud/.gitlab-ci.yml @@ -0,0 +1,164 @@ +stages: + - sanity + - integration + +ansible-devel-1/4: + stage: sanity + image: python:3.6-buster + allow_failure: true + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh devel/sanity/1 + tags: + - hc-bladerunner + +ansible-devel-2/4: + stage: sanity + image: python:3.6-buster + allow_failure: true + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh devel/sanity/2 + tags: + - hc-bladerunner + +ansible-devel-3/4: + stage: sanity + image: python:3.6-buster + allow_failure: true + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh devel/sanity/3 + tags: + - hc-bladerunner + +ansible-devel-4/4: + stage: sanity + image: python:3.6-buster + allow_failure: true + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh devel/sanity/4 + tags: + - hc-bladerunner + +ansible-210-1/4: + stage: sanity + image: python:3.6-buster + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh 2.10/sanity/1 + tags: + - hc-bladerunner + +ansible-210-2/4: + stage: sanity + image: python:3.6-buster + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh 2.10/sanity/2 + tags: + - hc-bladerunner + +ansible-210-3/4: + stage: sanity + image: python:3.6-buster + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh 2.10/sanity/3 + tags: + - hc-bladerunner + +ansible-210-4/4: + stage: sanity + image: python:3.6-buster + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh 2.10/sanity/4 + tags: + - hc-bladerunner + +ansible-29-1/4: + stage: sanity + image: python:3.6-buster + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh 2.9/sanity/1 + tags: + - hc-bladerunner + +ansible-29-2/4: + stage: sanity + image: python:3.6-buster + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh 2.9/sanity/2 + tags: + - hc-bladerunner + +ansible-29-3/4: + stage: sanity + image: python:3.6-buster + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh 2.9/sanity/3 + tags: + - hc-bladerunner + +ansible-29-4/4: + stage: sanity + image: python:3.6-buster + except: + - tags + script: + - bash tests/utils/gitlab/gitlab.sh 2.9/sanity/4 + tags: + - hc-bladerunner + +ansible-devel-1/3: + stage: integration + image: python:3.6-buster + except: + - tags + script: + - echo "$HCLOUD_TOKEN" >> "$(pwd)/hcloud_token.txt" + - echo "py38-$CI_JOB_ID" >> "$(pwd)/prefix.txt" + - bash tests/utils/gitlab/gitlab.sh devel/hcloud/3.6/1 + tags: + - hc-bladerunner + + +ansible-devel-2/3: + stage: integration + image: python:3.6-buster + except: + - tags + script: + - echo "$HCLOUD_TOKEN" >> "$(pwd)/hcloud_token.txt" + - echo "py39-$CI_JOB_ID" >> "$(pwd)/prefix.txt" + - bash tests/utils/gitlab/gitlab.sh devel/hcloud/3.6/2 + tags: + - hc-bladerunner + +ansible-devel-3/3: + stage: integration + image: python:3.6-buster + except: + - tags + script: + - echo "$HCLOUD_TOKEN" >> "$(pwd)/hcloud_token.txt" + - echo "py39-$CI_JOB_ID" >> "$(pwd)/prefix.txt" + - bash tests/utils/gitlab/gitlab.sh devel/hcloud/3.6/3 + tags: + - hc-bladerunner |