-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (43 loc) · 1.15 KB
/
toolchain-beyond-doubt.yaml
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
---
name: Toolchain beyond doubt
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
everything:
name: Everything in ${{ matrix.devenv.name }} env
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
devenv:
- name: turing
os: ubuntu-22.04
- name: church
os: ubuntu-20.04
runs-on: ${{ matrix.devenv.os }}
permissions:
packages: write
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/prepare
with:
name: ${{ matrix.devenv.name }}
tools: python java docker
token: ${{ secrets.GITHUB_TOKEN }}
- run: ansible-playbook codebase.yaml -e focus=toolchain
working-directory: .dx
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: >
ansible-playbook stacks.yaml
-e image_repo=ghcr.io
-e devenv=${{ matrix.devenv.name }}
-e focus=toolchain
working-directory: .dx
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}