From 3fbaea7e00ca112061854a84709199e192d1c4bf Mon Sep 17 00:00:00 2001 From: sewn Date: Fri, 3 Nov 2023 09:34:36 +0300 Subject: [PATCH] ci/go: allow building splash --- .github/workflows/go.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3b3b0b30..4f9b7972 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -9,6 +9,8 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: 'Install Gio dependencies' + run: sudo apt install gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev - name: 'Setup Go' uses: actions/setup-go@v4 with: @@ -18,4 +20,6 @@ jobs: - name: 'Run tests' run: make tests - name: 'Build Vinegar' - run: make VINEGAR_GOFLAGS="--tags nogui" + run: make + - name: 'Build Vinegar with nosplash' + run: make VINEGAR_GOFLAGS=--tags=nogui