Skip to content

Add test for unwinding in interrupt handler. #120

Add test for unwinding in interrupt handler.

Add test for unwinding in interrupt handler. #120

Workflow file for this run

name: Build Test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
check-rust-toolchain:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Prepare Rust compiler toolchain
uses: ./.github/workflows/actions/prepare-rust-toolchain
with:
cookie: ${{ secrets.HOPTER_DOWNLOAD_AUTHORIZATION_COOKIE }}
- name: Verify Rust compiler toolchain registration
run: cargo +segstk-rust --version
shell: bash
check-qemu:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Prepare QEMU
uses: ./.github/workflows/actions/prepare-qemu
with:
cookie: ${{ secrets.HOPTER_DOWNLOAD_AUTHORIZATION_COOKIE }}
- name: Verify QEMU
run: qemu-system-arm --version
shell: bash
build:
runs-on: ubuntu-latest
needs: [check-qemu, check-rust-toolchain]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Hopter and tests
uses: ./.github/workflows/actions/build
with:
cookie: ${{ secrets.HOPTER_DOWNLOAD_AUTHORIZATION_COOKIE }}
test:
needs: [build]
uses: ./.github/workflows/tests.yaml

Check failure on line 53 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yaml" -> "./.github/workflows/tests.yaml" (source branch with sha:55b7733066c076f10ad84f2dfbc95101ffca68e0) --> "./.github/workflows/interrupt.yaml" (source branch with sha:55b7733066c076f10ad84f2dfbc95101ffca68e0) ---> "./.github/workflows/unwind.yaml" : failed to fetch workflow: workflow was not found.
secrets:
cookie: ${{ secrets.HOPTER_DOWNLOAD_AUTHORIZATION_COOKIE }}