修复调度器不稳定问题 & 修复AHCI驱动设备寄存器地址获取问题 #96
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: CI Workflow | |
| on: | |
| push: | |
| branches: ["main","x86_64"] | |
| pull_request: | |
| branches: ["main","x86_64"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Build | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install packages | |
| uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: xorriso nasm clang | |
| version: 1.0 | |
| - name: Setup BuildTools | |
| uses: xmake-io/github-action-setup-xmake@v1 | |
| with: | |
| xmake-version: latest | |
| actions-cache-folder: '.xmake-cache' | |
| - name: Build Kernel | |
| run: xmake build -y | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: CoolPotOS | |
| path: build/CoolPotOS.iso | |
| compression-level: 9 |