From 168c917e0412e5f2a7c2eb790f3dbbd09871c6e9 Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Tue, 20 Jan 2026 07:31:01 +0100 Subject: [PATCH] remove matrix build the non-matrix build is much faster --- .gitea/workflows/build.yaml | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index f5e2d61..492a59b 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -21,35 +21,8 @@ jobs: - name: upload artifacts uses: actions/upload-artifact@v3 with: - name: zig-totp-$GITHUB_REF_NAME + name: zig-totp path: zig-out/bin/ - release: - name: ${{ matrix.target }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - include: - - target: x86_64-linux-musl - - target: x86_64-linux-gnu - - target: x86_64-windows - steps: - - run: printenv - - name: Check out repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - fetch-tags: '' - - run: wget http://172.17.0.1:8081/repository/ziglang.org/download/$ZIG_VERSION/zig-x86_64-linux-${ZIG_VERSION}.tar.xz - - run: tar xfv zig-x86_64-linux-$ZIG_VERSION.tar.xz - - run: ./zig-x86_64-linux-$ZIG_VERSION/zig build -Doptimize=ReleaseSmall -Dtarget=${{ matrix.target }} -Dexe_name=zig-totp-$GITHUB_REF_NAME-${{ matrix.target }} - - name: upload artifacts - uses: actions/upload-artifact@v3 - with: - name: zig-totp-${{matrix.target }} - path: zig-out/bin/ - -