Skip to content

Commit

Permalink
chore(ci): added multiarch matrix support.
Browse files Browse the repository at this point in the history
Moreover, added ansible cleanup playbook.

Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP committed Jul 13, 2023
1 parent ca96722 commit bbde65c
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/kernel_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,22 @@ on:
jobs:
test-kernels:
name: build-latest-kernel
runs-on: [ "self-hosted", "linux", "X64" ]
strategy:
fail-fast: false
matrix:
arch: ["X64", "ARM64"]
runs-on: [ "self-hosted", "linux", ${{ matrix.arch }} ]
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Start tests
- name: Run kernels tests
run: |
ansible-playbook master-playbook.yml
- name: Cleanup
if: always()
run: |
ansible-playbook clean-up.yml

0 comments on commit bbde65c

Please sign in to comment.