From 6b4d313f9b592ddec5f780b0885ac9272fa1cc61 Mon Sep 17 00:00:00 2001 From: Sam Tebbs Date: Fri, 9 Apr 2021 20:30:05 +0100 Subject: [PATCH 1/2] Update to zig master (0d92bd474) --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index b20804c..3684b6b 100644 --- a/build.zig +++ b/build.zig @@ -264,7 +264,7 @@ const RamdiskStep = struct { out_file_path: []const u8, /// The possible errors for creating a ramdisk - const Error = (error{EndOfStream} || File.ReadError || File.GetPosError || Allocator.Error || File.WriteError || File.OpenError); + const Error = (error{EndOfStream} || File.ReadError || File.SeekError || Allocator.Error || File.WriteError || File.OpenError); /// /// Create and write the files to a raw ramdisk in the format: From 3e70d3100174742fa7d8d92dedda0dd2230c4fe2 Mon Sep 17 00:00:00 2001 From: InfRandomness <43730933+InfRandomness@users.noreply.github.com> Date: Tue, 27 Apr 2021 18:07:11 +0000 Subject: [PATCH 2/2] Try to correct build error by changing distro used --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a04ee58..e03f712 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: jobs: test: name: Build mode ${{ matrix.build_mode }} - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 strategy: matrix: build_mode: ["", -Drelease-fast, -Drelease-safe, -Drelease-small]