From 7c133c4e4b568a17b798bf0c0c4551969cd76622 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 28 May 2025 13:31:15 +0200 Subject: [PATCH] ci(nix): disable sandbox in nix-non-x86 workflow otherwise the mockito tests fail, because it cannot bind to 127.0.0.1 0 - Updated `nix build` command to include `--no-sandbox` flag. --- .github/workflows/nix-non-x86.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-non-x86.yml b/.github/workflows/nix-non-x86.yml index 0872032..b80cf6a 100644 --- a/.github/workflows/nix-non-x86.yml +++ b/.github/workflows/nix-non-x86.yml @@ -34,5 +34,5 @@ jobs: # FIXME: this prevents it from running on macos # https://github.com/NixOS/nix/pull/12570 # run: nix run github:nixos/nixpkgs/nixos-24.11#nixci -- build - run: nix build -L .#teepot + run: nix build -L .#teepot --no-sandbox