implement psci and test that cpu1 works well. #19
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: Dev Build and Release | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.14.1 | |
| - run: | | |
| sudo apt-get update | |
| mkdir -p .zig-cache | |
| - run: | | |
| zig build -Dplatform=aarch64_qemu -Doptimize=ReleaseSafe | |
| mv ./zig-out/disk.img ./violet-aarch64_qemu.img | |
| - uses: "marvinpinto/action-automatic-releases@latest" | |
| with: | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| automatic_release_tag: "dev" | |
| prerelease: true | |
| title: "Development Build" | |
| files: | | |
| violet-aarch64_qemu.img | |
| violet-aarch64_rpi4b.img | |
| license | |
| readme.md |