Skip to content

Commit

Permalink
this workflows should work
Browse files Browse the repository at this point in the history
  • Loading branch information
YiraSan committed Jan 3, 2025
1 parent 4f41522 commit 21fd28e
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,22 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: checkout code
uses: actions/checkout@v3
- uses: actions/checkout@v3

- uses: mlugg/setup-zig@latest
with:
version: 0.14.0-dev.2597+252c20310

- name: install dependencies
run: |
- run: |
sudo apt-get update
sudo apt-get install -y xorriso
wget https://ziglang.org/builds/zig-linux-x86_64-0.14.0-dev.2597+252c20310.tar.xz -O zig.tar.xz
tar -xf zig.tar.xz
mv zig-linux-x86_64-*/zig ./zig
- name: q35 build
run: |
./zig build -Ddevice=q35
- run: |
zig build -Ddevice=q35
mv ./zig-out/iso/violet.iso ./violet-q35.iso
- name: virt build
run: |
./zig build -Ddevice=virt
- run: |
zig build -Ddevice=virt
mv ./zig-out/iso/violet.iso ./violet-virt.iso
- uses: "marvinpinto/action-automatic-releases@latest"
Expand Down

0 comments on commit 21fd28e

Please sign in to comment.