Skip to content

chore(ci): added multiarch matrix support. #9

chore(ci): added multiarch matrix support.

chore(ci): added multiarch matrix support. #9

Workflow file for this run

name: Test drivers against a matrix of kernels/distros
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * *' # every day at 8am
jobs:
test-kernels:
name: build-latest-kernel
matrix:
arch: ["X64", "ARM64" ]

Check failure on line 12 in .github/workflows/kernel_tests.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/kernel_tests.yaml

Invalid workflow file

You have an error in your yaml syntax on line 12
runs-on: [ "self-hosted", "linux", ${{ matrix.os }} ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run kernels tests
run: |
ansible-playbook master-playbook.yml
- name: Cleanup
if: always()
run: |
ansible-playbook clean-up.yml