Compare commits
2 commits
7a6086447c
...
98fff010dd
Author | SHA1 | Date | |
---|---|---|---|
98fff010dd | |||
072dcc1cec |
5 changed files with 2 additions and 101 deletions
24
.github/workflows/build.yaml
vendored
24
.github/workflows/build.yaml
vendored
|
@ -1,24 +0,0 @@
|
||||||
name: Current zig version build
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'master'
|
|
||||||
jobs:
|
|
||||||
build-amd64:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: ${{ github.env.GITEA_ACTIONS != 'true' }}
|
|
||||||
steps:
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Zig
|
|
||||||
uses: mlugg/setup-zig@v1.2.1
|
|
||||||
with:
|
|
||||||
version: 0.14.0
|
|
||||||
- name: Restore Zig caches
|
|
||||||
uses: Hanaasagi/zig-action-cache@3954aae427f8b05914e08dfd79f15e1f2e435929
|
|
||||||
- name: Run tests
|
|
||||||
run: zig build test -Dbroken-windows --verbose # Github runners try to run the windows tests despite disabling foreign checks
|
|
||||||
- name: Run tests (release mode)
|
|
||||||
run: zig build test -Doptimize=ReleaseSafe -Dbroken-windows --verbose # Github runners try to run the windows tests despite disabling foreign checks
|
|
||||||
- name: Build example
|
|
||||||
run: ( cd example && zig build ) # Make sure example builds
|
|
24
.github/workflows/zig-mach.yaml
vendored
24
.github/workflows/zig-mach.yaml
vendored
|
@ -1,24 +0,0 @@
|
||||||
name: Latest mach nominated zig version build
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'zig-mach*'
|
|
||||||
jobs:
|
|
||||||
build-zig-mach-latest:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: ${{ github.env.GITEA_ACTIONS != 'true' }}
|
|
||||||
steps:
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Zig
|
|
||||||
uses: mlugg/setup-zig@v1.2.1
|
|
||||||
with:
|
|
||||||
version: mach-latest
|
|
||||||
- name: Restore Zig caches
|
|
||||||
uses: Hanaasagi/zig-action-cache@3954aae427f8b05914e08dfd79f15e1f2e435929
|
|
||||||
- name: Run tests
|
|
||||||
run: zig build test -Dbroken-windows --verbose
|
|
||||||
- name: Run tests (release mode)
|
|
||||||
run: zig build test -Doptimize=ReleaseSafe -Dbroken-windows --verbose # Github runners try to run the windows tests despite disabling foreign checks
|
|
||||||
- name: Build example
|
|
||||||
run: ( cd example && zig build ) # Make sure example builds
|
|
24
.github/workflows/zig-nightly.yaml
vendored
24
.github/workflows/zig-nightly.yaml
vendored
|
@ -1,24 +0,0 @@
|
||||||
name: Nightly zig version Build
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'zig-develop*'
|
|
||||||
jobs:
|
|
||||||
build-zig-nightly:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: ${{ github.env.GITEA_ACTIONS != 'true' }}
|
|
||||||
steps:
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Zig
|
|
||||||
uses: mlugg/setup-zig@v1.2.1
|
|
||||||
with:
|
|
||||||
version: master
|
|
||||||
- name: Restore Zig caches
|
|
||||||
uses: Hanaasagi/zig-action-cache@3954aae427f8b05914e08dfd79f15e1f2e435929
|
|
||||||
- name: Run tests
|
|
||||||
run: zig build test -Dbroken-windows --verbose
|
|
||||||
- name: Run tests (release mode)
|
|
||||||
run: zig build test -Doptimize=ReleaseSafe -Dbroken-windows --verbose # Github runners try to run the windows tests despite disabling foreign checks
|
|
||||||
- name: Build example
|
|
||||||
run: ( cd example && zig build ) # Make sure example builds
|
|
27
.github/workflows/zig-previous.yaml
vendored
27
.github/workflows/zig-previous.yaml
vendored
|
@ -1,27 +0,0 @@
|
||||||
name: Previous zig version Build
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'zig-0.13'
|
|
||||||
jobs:
|
|
||||||
build-amd64:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: ${{ github.env.GITEA_ACTIONS != 'true' }}
|
|
||||||
steps:
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Zig
|
|
||||||
uses: mlugg/setup-zig@v1.2.1
|
|
||||||
with:
|
|
||||||
version: 0.13.0
|
|
||||||
- name: Restore Zig caches
|
|
||||||
uses: Hanaasagi/zig-action-cache@3954aae427f8b05914e08dfd79f15e1f2e435929
|
|
||||||
- name: Run tests
|
|
||||||
- name: Run tests (release mode)
|
|
||||||
run: zig build test -Doptimize=ReleaseSafe -Dbroken-windows --verbose # Github runners try to run the windows tests despite disabling foreign checks
|
|
||||||
run: zig build test -Dbroken-windows --verbose # Github runners try to run the windows tests despite disabling foreign checks
|
|
||||||
# This is broken without intension of backporting the patch at this time
|
|
||||||
# - name: Run tests (release mode)
|
|
||||||
# run: zig build test -Doptimize=ReleaseSafe -Dbroken-windows --verbose # Github runners try to run the windows tests despite disabling foreign checks
|
|
||||||
- name: Build example
|
|
||||||
run: ( cd example && zig build ) # Make sure example builds
|
|
|
@ -6,8 +6,8 @@
|
||||||
|
|
||||||
.dependencies = .{
|
.dependencies = .{
|
||||||
.aws = .{
|
.aws = .{
|
||||||
.url = "https://git.lerch.org/api/packages/lobo/generic/aws-sdk-with-models/30d46261b791a1a916e30e60814b39c7ee994a74/30d46261b791a1a916e30e60814b39c7ee994a74-with-models.tar.gz",
|
.url = "https://git.lerch.org/api/packages/lobo/generic/aws-sdk-with-models/7a6086447c1249b0e5b5b5f3873d2f7932bea56d/7a6086447c1249b0e5b5b5f3873d2f7932bea56d-with-models.tar.gz",
|
||||||
.hash = "aws-0.0.1-SbsFcLuV6gEkmY-mNp_x-V_GJ-zuJRqIljc4tAu60-g_",
|
.hash = "aws-0.0.1-SbsFcGN_CQCBjurpc2GEMw4c_qAkGu6KpuVnLBLY4L4q",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue