-
Notifications
You must be signed in to change notification settings - Fork 7
52 lines (45 loc) · 1.39 KB
/
ansible.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: ansible
on: [pull_request, workflow_dispatch]
jobs:
alpine-gnu:
if: ${{ vars.CURRENT_TOOL == github.workflow }}
uses: ./.github/workflows/build-alpine.yml
with:
workflow: ${{ github.workflow }}
toolset: gnu
version: 3.18.3
ubuntu-docker:
if: ${{ vars.CURRENT_TOOL == github.workflow }}
uses: ./.github/workflows/build-docker.yml
with:
workflow: ${{ github.workflow }}
test-ubuntu:
needs: alpine-gnu
uses: ./.github/workflows/test-ubuntu.yml
with:
workflow: ${{ github.workflow }}
artifact: build-gnu
test-alpine:
needs: alpine-gnu
uses: ./.github/workflows/test-alpine.yml
with:
workflow: ${{ github.workflow }}
artifact: build-gnu
test-ubuntu-docker:
needs: ubuntu-docker
uses: ./.github/workflows/test-docker.yml
with:
workflow: ${{ github.workflow }}
artifact: build-docker
release:
needs: [test-alpine, test-ubuntu, test-ubuntu-docker]
uses: ./.github/workflows/release.yml
with:
workflow: ${{ github.workflow }}
tool_version: '8.3.0'
prepare_body: |
bsdtar -Oxf ./build-docker/build-docker.tar.gz build-docker.md >> body.md
bsdtar -Oxf ./build-gnu/build-gnu.tar.gz build-gnu.md >> body.md
artifacts: ./build-docker/build-docker.tar.gz, ./build-gnu/build-gnu.tar.gz
secrets:
token: ${{ secrets.GITHUB_TOKEN }}