revise return value check #243
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: Run | |
on: | |
push: | |
branches: | |
- stage0 | |
pull_request: | |
branches: | |
- stage0 | |
schedule: | |
- cron: '0 0 * * 6' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest,macos-latest,windows-latest] | |
steps: | |
- name: Install QEMU (ubuntu) | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
sudo apt-get update | |
sudo apt-get install qemu-system-x86 qemu-system-aarch64 | |
- name: Install QEMU (macos) | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
brew update | |
brew install qemu | |
- name: Install QEMU (windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
choco install qemu | |
echo "$Env:Programfiles\qemu" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
shell: pwsh | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Check Cargo availability | |
run: cargo --version | |
- name: Install bootimage | |
run: cargo install bootimage | |
- name: Build (x86_64) | |
run: | |
cargo build | |
- name: Build (aarch64) | |
run: | |
cargo build --target=aarch64-eduos.json | |
- name: run (ubuntu) | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: ./test.sh | |
- name: run (macos) | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: ./test.sh | |
- name: run (windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: pwsh -command ".\$GITHUB_WORKSPACE\test.ps1" |