From 62f4c205f5b7902b7e0e3ae804c19299805ffd97 Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Thu, 17 Mar 2022 18:11:04 +0000 Subject: [PATCH] Run binary build with nix --- .github/workflows/build.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37423c38..c42429d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,30 +22,21 @@ jobs: uses: tj-actions/changed-files@v14.1 with: files: | + *.nix go.* **/*.go integration_test/ config-example.yaml - - name: Setup Go + - uses: cachix/install-nix-action@v16 if: steps.changed-files.outputs.any_changed == 'true' - uses: actions/setup-go@v2 - with: - go-version: "1.17.7" - - - name: Install dependencies - if: steps.changed-files.outputs.any_changed == 'true' - run: | - go version - sudo apt update - sudo apt install -y make - name: Run build if: steps.changed-files.outputs.any_changed == 'true' - run: make build + run: nix build - uses: actions/upload-artifact@v2 if: steps.changed-files.outputs.any_changed == 'true' with: name: headscale-linux - path: headscale + path: result/bin/headscale