From 3adc07c0aac61cafe6e46c22da65f7d59d4762a6 Mon Sep 17 00:00:00 2001 From: Jacob Weinstock Date: Wed, 5 Apr 2023 10:12:13 -0600 Subject: [PATCH] debugging Signed-off-by: Jacob Weinstock --- .github/workflows/ci.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 46a815be..9a658f8d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,17 +27,20 @@ jobs: with: nix_path: nixpkgs=channel:nixpkgs-unstable + - name: Workaround for disk space issue + run: rm -rf /opt/hostedtoolcache/CodeQL || true; df -ah; sudo du -sh /*||true; + - name: Fetch Deps - run: nix-shell --run 'go get -t ./... && go mod tidy' + run: nix-shell --run 'pwd; go get -t ./... && go mod tidy' - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Generate all files - run: nix-shell --run 'make -j1 gen' + run: nix-shell --run 'pwd; make -j1 gen' - name: Run all the tests - run: nix-shell --run 'make ci' + run: nix-shell --run 'pwd; make ci' - name: upload codecov run: bash <(curl -s https://codecov.io/bash)