Skip to content

new: added a new matrix_gen GO tool to generate kernel compatibility … #24

new: added a new matrix_gen GO tool to generate kernel compatibility …

new: added a new matrix_gen GO tool to generate kernel compatibility … #24

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
# Checks if any concurrent jobs under the same pull request or branch are being executed
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test-kernels:
name: build-latest-kernel
strategy:
fail-fast: false
matrix:
architecture: [X64, ARM64]
runs-on: [ "self-hosted", "linux", "${{matrix.architecture}}" ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run kernels tests
run: ansible-playbook master-playbook.yml || :

Check failure on line 26 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 26
- name: Tar output files
run: tar -cvf ansible_output.tar ~/ansible_output
- uses: actions/upload-artifact@v3
with:
name: ansible_output_${{matrix.architecture}}
path: ansible_output.tar
- name: Build matrix_gen
working-directory: matrix_gen
run: go build .
- name: Generate new matrix
working-directory: matrix_gen
run: ./matrix_gen
- uses: actions/upload-artifact@v3
working-directory: matrix_gen
with:
name: matrix_${{matrix.architecture}}
path: matrix.md
- name: Cleanup
run: ansible-playbook clean-up.yml