ansible-collection-hetzner-.../.gitlab-ci.yml
Jonas L 7b3f253d07
ci: use shared gitlab CI template (#257)
* ci: use shared gitlab CI template

* ci: bump python version
2023-07-11 12:47:48 +02:00

40 lines
813 B
YAML

include:
- project: cloud/integrations/ci
file:
- default.yml
- pre-commit.yml
stages:
- sanity
- integration
variables:
PYTHON_VERSION: "3.10"
default:
image: python:$PYTHON_VERSION
sanity:
stage: sanity
allow_failure: true
except:
- tags
parallel:
matrix:
- ANSIBLE_VERSION: ["devel", "2.13", "2.14", "2.15"]
GROUP: [1]
script:
- bash tests/utils/gitlab/gitlab.sh ${ANSIBLE_VERSION}/sanity/${GROUP}
integration:
stage: integration
except:
- tags
parallel:
matrix:
- ANSIBLE_VERSION: ["devel"]
GROUP: [1, 2, 3]
script:
- echo "$HCLOUD_TOKEN" >> "$(pwd)/hcloud_token.txt"
- echo "$CI_JOB_ID" >> "$(pwd)/prefix.txt"
- bash tests/utils/gitlab/gitlab.sh ${ANSIBLE_VERSION}/hcloud/${PYTHON_VERSION}/${GROUP}