Skip to content

Commit 3ce4b4c

Browse files
latest CI
1 parent bd3e846 commit 3ce4b4c

File tree

3 files changed

+53
-57
lines changed

3 files changed

+53
-57
lines changed

.github/workflows/build.yml

+3-44
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,5 @@
11
---
22
jobs:
3-
build:
4-
runs-on: ubuntu-latest
5-
steps:
6-
- uses: actions/checkout@v3
7-
- name: install python ${{ matrix.python-version }}
8-
uses: actions/setup-python@v4
9-
with:
10-
python-version: ${{ matrix.python-version }}
11-
- name: install task
12-
uses: arduino/setup-task@v1
13-
with:
14-
repo-token: ${{ github.token }}
15-
- name: task ver
16-
run: task --version
17-
- name: download task mono
18-
uses: actions/checkout@v3
19-
with:
20-
path: taskmono
21-
ref: develop
22-
repository: andrewrothstein/tasks
23-
- name: 'task #ftw'
24-
run: task -t taskmono/ansible-test-role.yml "targetuser=${{ github.actor }}"
25-
"targetpwd=${{ github.token }}" "alltags=${{ matrix.os }}"
26-
strategy:
27-
fail-fast: false
28-
matrix:
29-
os:
30-
- alpine_3.17
31-
- alpine_3.18
32-
- alpine_edge
33-
- archlinux_latest
34-
- debian_bookworm
35-
- debian_bullseye
36-
- fedora_37
37-
- fedora_38
38-
- rockylinux_8
39-
- rockylinux_9
40-
- ubuntu_focal
41-
- ubuntu_jammy
42-
python-version:
43-
- '3.11'
44-
name: dcb
45-
'on':
46-
- push
3+
bake-ansible-images-v1:
4+
uses: andrewrothstein/.github/.github/workflows/bake-ansible-images-v1.yml@develop
5+
'on': push

dcb-os.yml

-13
This file was deleted.

platform-matrix-v1.json

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
[
2+
{
3+
"OS": "alpine",
4+
"OS_VER": "3.17"
5+
},
6+
{
7+
"OS": "alpine",
8+
"OS_VER": "3.18"
9+
},
10+
{
11+
"OS": "alpine",
12+
"OS_VER": "edge"
13+
},
14+
{
15+
"OS": "archlinux",
16+
"OS_VER": "latest"
17+
},
18+
{
19+
"OS": "debian",
20+
"OS_VER": "bookworm"
21+
},
22+
{
23+
"OS": "debian",
24+
"OS_VER": "bullseye"
25+
},
26+
{
27+
"OS": "fedora",
28+
"OS_VER": "37"
29+
},
30+
{
31+
"OS": "fedora",
32+
"OS_VER": "38"
33+
},
34+
{
35+
"OS": "rockylinux",
36+
"OS_VER": "8"
37+
},
38+
{
39+
"OS": "rockylinux",
40+
"OS_VER": "9"
41+
},
42+
{
43+
"OS": "ubuntu",
44+
"OS_VER": "focal"
45+
},
46+
{
47+
"OS": "ubuntu",
48+
"OS_VER": "jammy"
49+
}
50+
]

0 commit comments

Comments
 (0)