woodpecker: remove --no-build-outpu
All checks were successful
ci/woodpecker/push/debug Pipeline was successful
ci/woodpecker/pr/debug Pipeline was successful

This commit is contained in:
Alex 2025-02-02 20:34:05 +01:00
parent e7becb3379
commit 6294e69c2b

View file

@ -16,7 +16,7 @@ steps:
- name: build
image: nixpkgs/nix:nixos-22.05
commands:
- nix-build -j4 --no-build-output --attr flakePackages.dev
- nix-build -j4 --attr flakePackages.dev
- name: unit + func tests
image: nixpkgs/nix:nixos-22.05
@ -24,12 +24,12 @@ steps:
GARAGE_TEST_INTEGRATION_EXE: result-bin/bin/garage
GARAGE_TEST_INTEGRATION_PATH: tmp-garage-integration
commands:
- nix-build -j4 --no-build-output --attr flakePackages.tests-lmdb
- nix-build -j4 --no-build-output --attr flakePackages.tests-sqlite
- nix-build -j4 --attr flakePackages.tests-lmdb
- nix-build -j4 --attr flakePackages.tests-sqlite
- rm result
- name: integration tests
image: nixpkgs/nix:nixos-22.05
commands:
- nix-build -j4 --no-build-output --attr flakePackages.dev
- nix-build -j4 --attr flakePackages.dev
- nix-shell --attr ci --run ./script/test-smoke.sh || (cat /tmp/garage.log; false)