diff options
author | Vincent Ambo <tazjin@google.com> | 2021-04-30T10·56+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-04-30T11·27+0200 |
commit | 13d97c9e51a3c6cc2abcb354bcd0519a49aeed68 (patch) | |
tree | d86608e804d13d9e5362f6b1f174ac03ccfbfd92 /tools/nixery/.github/workflows/build-and-test.yaml | |
parent | 5c2db7b8ce4386bff4596eb0dfcc5d1f61dbf744 (diff) |
refactor(build): Pin dependencies using Go modules
Drops the go2nix configuration in favour of pkgs.buildGoModule. Note that the go.sum file is bloated by issues with cyclic dependencies in some Google projects, but this large number of dependencies is not actually built.
Diffstat (limited to 'tools/nixery/.github/workflows/build-and-test.yaml')
-rw-r--r-- | tools/nixery/.github/workflows/build-and-test.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nixery/.github/workflows/build-and-test.yaml b/tools/nixery/.github/workflows/build-and-test.yaml index 4563239a852f..2c0aff49d218 100644 --- a/tools/nixery/.github/workflows/build-and-test.yaml +++ b/tools/nixery/.github/workflows/build-and-test.yaml @@ -20,6 +20,6 @@ jobs: - name: Check formatting run: "test -z $(gofmt -l .)" - name: Build Nixery - run: "nix-build --arg maxLayers 2 --no-out-link" + run: "nix-build --no-out-link" - name: Run integration test run: scripts/integration-test.sh |