Skip to content

Isolate solution and pipeline changes #48

Isolate solution and pipeline changes

Isolate solution and pipeline changes #48

---
name: Pipeline beyond doubt
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
everything:
name: Everything in ${{ matrix.environ.name }} environ
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
environ:
- name: green
os: ubuntu-22.04
- name: amber
os: ubuntu-20.04
runs-on: ${{ matrix.environ.os }}
permissions:
checks: write
packages: write
pull-requests: write
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/prepare
with:
name: ${{ matrix.environ.name }}
tools: python java docker
token: ${{ secrets.GITHUB_TOKEN }}
- run: ansible-playbook sources.yml -l test:pipeline
working-directory: .dx
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: >
ansible-playbook stacks.yml
-e binary_repo=maven.pkg.github.com
-e image_repo=ghcr.io
-e environ=${{ matrix.environ.name }}
-e focus=pipeline
working-directory: .dx
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}