From f009e1bcff6723c4d016c23406a66182357acef9 Mon Sep 17 00:00:00 2001 From: benzjeremy <313434618+benzjeremy@users.noreply.github.com> Date: Thu, 17 Sep 2026 09:39:42 +0200 Subject: [PATCH] fix(ci): use CGO_ENABLED=0 and standard Go CI --- .github/workflows/ci_arch.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_arch.yml b/.github/workflows/ci_arch.yml index 6fb3a9e..775c356 100644 --- a/.github/workflows/ci_arch.yml +++ b/.github/workflows/ci_arch.yml @@ -11,12 +11,13 @@ jobs: runs-on: ubuntu-latest container: image: archlinux:latest + env: + CGO_ENABLED: "0" steps: - uses: actions/checkout@v4 - name: Install dependencies run: | - pacman -Sy --noconfirm git base-devel go \ - gtk3 webkit2gtk + pacman -Sy --noconfirm git base-devel go - name: Set up Go uses: actions/setup-go@v5 with: