Bump version to v0.2.4. #226
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- 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 | |
- 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 | |
test: | |
needs: [build] | |
uses: ./.github/workflows/tests.yaml |