Merge pull request #300 from ZystemOS/feature/zig-update
Update to zig master (0d92bd474)
This commit is contained in:
commit
f774793c60
2 changed files with 2 additions and 2 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -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]
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue