Skip to content

Commit

Permalink
Update the OS for Zig's workflow to only be linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
Makosai committed Aug 18, 2024
1 parent 654afd0 commit 13df883
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/godot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
replace-with: '_'
- uses: actions/checkout@v2
with:
lfs: false
lfs: true
- name: Build
id: build
uses: yeslayla/build-godot-action@v1.5.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
image: barichello/godot-ci:4.3
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest] #, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion zig/src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const Godot = @import("godot");
const builtin = @import("builtin");
const GPA = std.heap.GeneralPurposeAllocator(.{});

// 1
// 2

var gpa = GPA{};

Expand Down

0 comments on commit 13df883

Please sign in to comment.