diff --git a/.github/workflows/test-hw.yml b/.github/workflows/test-hw.yml index c4fa9a22..bd893229 100644 --- a/.github/workflows/test-hw.yml +++ b/.github/workflows/test-hw.yml @@ -18,8 +18,8 @@ permissions: contents: read jobs: - code: - name: Freeze Code + build: + name: Build runs-on: ubuntu-latest if: ${{ github.event_name == 'push' || github.event_name == 'pull_request_target' && @@ -30,25 +30,12 @@ jobs: github.event.action == 'labeled' && (github.event.label.name == 'hw-build' || github.event.label.name == 'hw-test') }} - outputs: - xml: ${{ steps.repo.outputs.xml }} - steps: - - id: repo - uses: seL4/ci-actions/repo-checkout@master - with: - manifest_repo: camkes-vm-examples-manifest - manifest: master.xml - - build: - name: Build - needs: code - runs-on: ubuntu-latest strategy: fail-fast: true matrix: march: [nehalem, armv7a, armv8a] steps: - - uses: seL4/ci-actions/camkes-vm@master + - uses: axel-h/ci-actions/camkes-vm@patch-axel-7 with: xml: ${{ needs.code.outputs.xml }} march: ${{ matrix.march }} @@ -87,7 +74,7 @@ jobs: with: name: images-${{ matrix.march }} - name: Run - uses: seL4/ci-actions/camkes-vm-hw@master + uses: axel-h/ci-actions/camkes-vm-hw@patch-axel-7 with: march: ${{ matrix.march }} index: $${{ strategy.job-index }}