From 13df8836be9f55e2a649a7abb7c1e19d223c5fd3 Mon Sep 17 00:00:00 2001 From: Makosai Date: Sun, 18 Aug 2024 11:03:20 -0400 Subject: [PATCH] Update the OS for Zig's workflow to only be linux. --- .github/workflows/godot.yml | 2 +- .github/workflows/zig.yml | 2 +- zig/src/main.zig | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/godot.yml b/.github/workflows/godot.yml index 460a21d2..74df5bbf 100644 --- a/.github/workflows/godot.yml +++ b/.github/workflows/godot.yml @@ -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 diff --git a/.github/workflows/zig.yml b/.github/workflows/zig.yml index dc3c409a..06021ae5 100644 --- a/.github/workflows/zig.yml +++ b/.github/workflows/zig.yml @@ -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 diff --git a/zig/src/main.zig b/zig/src/main.zig index c8b9aa02..933321a7 100644 --- a/zig/src/main.zig +++ b/zig/src/main.zig @@ -3,7 +3,7 @@ const Godot = @import("godot"); const builtin = @import("builtin"); const GPA = std.heap.GeneralPurposeAllocator(.{}); -// 1 +// 2 var gpa = GPA{};