APIC driver #23
Workflow file for this run
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
| name: Run test suite | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install apt packages | |
| run: | | |
| sudo apt update | |
| sudo apt install clang lld llvm grub-efi-amd64-bin mtools | |
| - name: Build ModulOS | |
| run: | | |
| make -j$(nproc) build | |
| - name: Run test suite | |
| run: | | |
| make test-all | tee build/test-log.txt | |
| - name: Archive debugging symbols | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dbg-symbols | |
| path: build/modulos-dbg | |
| retention-days: 2 | |
| - name: Archive testsuite log | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: testsuite-log | |
| path: build/test-log.txt | |
| retention-days: 2 |