diff --git a/.buildkite/identity_tests.yml b/.buildkite/identity_tests.yml index 511fb16e5..1ae379a77 100644 --- a/.buildkite/identity_tests.yml +++ b/.buildkite/identity_tests.yml @@ -1,7 +1,7 @@ steps: - label: ":nix: Identity Tests (Nix)" command: - 'cd services/identity' - - 'nix develop --command cargo test' + - 'nix develop --accept-flake-config --command cargo test' agents: - 'mac=true' diff --git a/.buildkite/nix_yarn.yml b/.buildkite/nix_yarn.yml index 0427467fd..b50a77762 100644 --- a/.buildkite/nix_yarn.yml +++ b/.buildkite/nix_yarn.yml @@ -1,5 +1,5 @@ steps: - label: 'nix develop -c yarn cleaninstall' - command: 'nix develop -c yarn cleaninstall' + command: 'nix develop --accept-flake-config -c yarn cleaninstall' agents: - 'nixdarwin=true' diff --git a/.buildkite/tunnelbroker_unittests.yml b/.buildkite/tunnelbroker_unittests.yml index d456034a3..a556f0957 100644 --- a/.buildkite/tunnelbroker_unittests.yml +++ b/.buildkite/tunnelbroker_unittests.yml @@ -1,9 +1,9 @@ steps: - label: ":nix: Tunnelbroker Unittests" command: - 'cd services/tunnelbroker' - 'rm -rf build && mkdir build && cd build' - - 'nix develop --command bash -c "cmake .. && make -j"' + - 'nix develop --accept-flake-config --command bash -c "cmake .. && make -j"' - './bin/runTests --gtest_filter=-AmqpManager*:DatabaseManager*' agents: - 'mac=true'