You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
447 B
16 lines
447 B
---- |
|
kind: pipeline |
|
name: default |
|
steps: |
|
- name: integration test |
|
image: python:3.9-buster |
|
environment: |
|
REMOTE_USER: molecule |
|
HCLOUD_TOKEN: |
|
from_secret: HCLOUD_TOKEN |
|
commands: |
|
- apt update && apt install -y pwgen |
|
- mkdir -p /root/.ansible/roles && ln -sr . /root/.ansible/roles/autonomic.packages |
|
- export INSTANCE_UUID=$(pwgen 8 1) |
|
- pip install -r requirements.txt |
|
- molecule test
|
|
|