This repository was archived by the owner on Sep 15, 2025. It is now read-only.
Removed extra dash #3
This file contains hidden or 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
| on: | |
| push: | |
| branches: [ "nightly" ] | |
| pull_request: | |
| branches: [ "nitghly" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: nightly | |
| override: true | |
| target: x86_64-unknown-none | |
| components: rust-src | |
| - name: Update Debian repositories | |
| run: sudo apt-get update | |
| - name: Setup nasm | |
| run: sudo apt-get install -y nasm | |
| - name: Install xorriso | |
| run: sudo apt-get install -y xorriso | |
| - name: Install qemu | |
| run: sudo apt-get install qemu-system-x86 | |
| - name: Run make | |
| run: make |