From 04f25150af503aefc090273111297c0962e87214 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Sun, 18 Feb 2024 01:34:54 +0100 Subject: [PATCH] Add debug logging build --- .github/workflows/go.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3e9c32c..ca33e0c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,6 +10,23 @@ env: GO_VERSION: '1.20' jobs: + build_linux_x86_64_debug: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: ${{ env.GO_VERSION }} + - name: Install libfido2-dev + run: sudo apt-get install -y libfido2-dev + - name: Build Debug + run: go build -tags debuglogging -o goldwarden_linux_x86_64_debug -v . + - uses: actions/upload-artifact@v3 + with: + name: goldwarden_linux_x86_64_debug + path: ./goldwarden_linux_x86_64_debug + build_linux_x86_64: runs-on: ubuntu-latest steps: