From 072dcc1cecb219ea053060ac8fbca4e7f811b5b4 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Wed, 16 Apr 2025 19:00:18 -0700 Subject: [PATCH] remove GitHub actions as they seem to be looking for payment info for free accounts --- .github/workflows/build.yaml | 24 ------------------------ .github/workflows/zig-mach.yaml | 24 ------------------------ .github/workflows/zig-nightly.yaml | 24 ------------------------ .github/workflows/zig-previous.yaml | 27 --------------------------- 4 files changed, 99 deletions(-) delete mode 100644 .github/workflows/build.yaml delete mode 100644 .github/workflows/zig-mach.yaml delete mode 100644 .github/workflows/zig-nightly.yaml delete mode 100644 .github/workflows/zig-previous.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml deleted file mode 100644 index ed47037..0000000 --- a/.github/workflows/build.yaml +++ /dev/null @@ -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 diff --git a/.github/workflows/zig-mach.yaml b/.github/workflows/zig-mach.yaml deleted file mode 100644 index f5ae3ce..0000000 --- a/.github/workflows/zig-mach.yaml +++ /dev/null @@ -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 diff --git a/.github/workflows/zig-nightly.yaml b/.github/workflows/zig-nightly.yaml deleted file mode 100644 index 72036fd..0000000 --- a/.github/workflows/zig-nightly.yaml +++ /dev/null @@ -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 diff --git a/.github/workflows/zig-previous.yaml b/.github/workflows/zig-previous.yaml deleted file mode 100644 index 3a34ba2..0000000 --- a/.github/workflows/zig-previous.yaml +++ /dev/null @@ -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