feat: add test for Rocky Linux 8 #1
@ -71,7 +71,7 @@ local PipelineDeployment(scenario='centos7') = {
|
|||||||
'linting',
|
'linting',
|
||||||
],
|
],
|
||||||
trigger: {
|
trigger: {
|
||||||
ref: ['refs/heads/master', 'refs/tags/**'],
|
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -116,7 +116,7 @@ local PipelineDocumentation = {
|
|||||||
},
|
},
|
||||||
depends_on: [
|
depends_on: [
|
||||||
'testing-centos7',
|
'testing-centos7',
|
||||||
'testing-centos8',
|
'testing-rocky8',
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -155,7 +155,7 @@ local PipelineNotification = {
|
|||||||
[
|
[
|
||||||
PipelineLinting,
|
PipelineLinting,
|
||||||
PipelineDeployment(scenario='centos7'),
|
PipelineDeployment(scenario='centos7'),
|
||||||
PipelineDeployment(scenario='centos8'),
|
PipelineDeployment(scenario='rocky8'),
|
||||||
PipelineDocumentation,
|
PipelineDocumentation,
|
||||||
PipelineNotification,
|
PipelineNotification,
|
||||||
]
|
]
|
||||||
|
10
.drone.yml
10
.drone.yml
@ -62,13 +62,14 @@ trigger:
|
|||||||
ref:
|
ref:
|
||||||
- refs/heads/master
|
- refs/heads/master
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
- refs/pull/**
|
||||||
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- linting
|
- linting
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: testing-centos8
|
name: testing-rocky8
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
@ -85,7 +86,7 @@ steps:
|
|||||||
- name: ansible-molecule
|
- name: ansible-molecule
|
||||||
image: thegeeklab/molecule:3
|
image: thegeeklab/molecule:3
|
||||||
commands:
|
commands:
|
||||||
- molecule test -s centos8
|
- molecule test -s rocky8
|
||||||
environment:
|
environment:
|
||||||
HCLOUD_TOKEN:
|
HCLOUD_TOKEN:
|
||||||
from_secret: hcloud_token
|
from_secret: hcloud_token
|
||||||
@ -94,6 +95,7 @@ trigger:
|
|||||||
ref:
|
ref:
|
||||||
- refs/heads/master
|
- refs/heads/master
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
- refs/pull/**
|
||||||
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- linting
|
- linting
|
||||||
@ -140,7 +142,7 @@ trigger:
|
|||||||
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- testing-centos7
|
- testing-centos7
|
||||||
- testing-centos8
|
- testing-rocky8
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
@ -180,6 +182,6 @@ depends_on:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: 23a7011a86e379216d3808bd6e6ef297271124348d3853519e48990c6223073f
|
hmac: fc5f9e039193be0005c8c3b139b6a31d7b44c42f2222812b72763e1ff37e1d9c
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -1 +1 @@
|
|||||||
centos8
|
rocky8
|
@ -2,7 +2,6 @@
|
|||||||
- name: Converge
|
- name: Converge
|
||||||
hosts: all
|
hosts: all
|
||||||
vars:
|
vars:
|
||||||
ansible_python_interpreter: /usr/libexec/platform-python
|
|
||||||
lvm_volumes:
|
lvm_volumes:
|
||||||
- name: lv_test
|
- name: lv_test
|
||||||
group: vg_test
|
group: vg_test
|
@ -9,8 +9,8 @@ dependency:
|
|||||||
driver:
|
driver:
|
||||||
name: delegated
|
name: delegated
|
||||||
platforms:
|
platforms:
|
||||||
- name: centos8-lvm
|
- name: rocky8-lvm
|
||||||
image: centos-8
|
image: rocky-8
|
||||||
server_type: cx11
|
server_type: cx11
|
||||||
volume: True
|
volume: True
|
||||||
lint: |
|
lint: |
|
Loading…
Reference in New Issue
Block a user