summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/testframework.yml
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2025-01-30 16:48:54 +0100
committerLinus Färnstrand <linus@mullvad.net>2025-01-30 16:48:54 +0100
commita07e80366e802164f96e12a4f22de5f0b565c996 (patch)
treeb0c9aacaa9b9a9992d9bee0bb2aaed4aa35b4e7a /.github/workflows/testframework.yml
parentaf3d57f2e73ff9cd467e31633591b42cf750f446 (diff)
parent80583adb59b773d7b254d913ea25383f7776719a (diff)
downloadmullvadvpn-a07e80366e802164f96e12a4f22de5f0b565c996.tar.xz
mullvadvpn-a07e80366e802164f96e12a4f22de5f0b565c996.zip
Merge branch 'add-locked-to-cargo-build'
Diffstat (limited to '.github/workflows/testframework.yml')
-rw-r--r--.github/workflows/testframework.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/testframework.yml b/.github/workflows/testframework.yml
index 288aee4273..6f6b874811 100644
--- a/.github/workflows/testframework.yml
+++ b/.github/workflows/testframework.yml
@@ -69,7 +69,7 @@ jobs:
- name: Build test framework
working-directory: test
- run: cargo build --release
+ run: cargo build --release --locked
# Build the test runner + test manager at once.
build-test-framework-macos:
@@ -91,7 +91,7 @@ jobs:
- name: Build test runner
working-directory: test
- run: cargo build
+ run: cargo build --locked
# Build only the test-runner binary on Windows. Windows is not a supported host for test-manager.
build-test-runner-windows:
@@ -112,4 +112,4 @@ jobs:
- name: Build test runner
working-directory: test
- run: cargo build --release -p test-runner --target x86_64-pc-windows-gnu
+ run: cargo build --release --locked -p test-runner --target x86_64-pc-windows-gnu