diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2025-01-24 16:15:11 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2025-01-30 16:48:38 +0100 |
| commit | e9506a30d00eb685792efd6638b68fe1579b1484 (patch) | |
| tree | a55f94a16d7e57e49f7beddd4debd7486c1958de | |
| parent | af3d57f2e73ff9cd467e31633591b42cf750f446 (diff) | |
| download | mullvadvpn-e9506a30d00eb685792efd6638b68fe1579b1484.tar.xz mullvadvpn-e9506a30d00eb685792efd6638b68fe1579b1484.zip | |
Append --locked to many more cargo build invocations in CI
| -rw-r--r-- | .github/workflows/testframework.yml | 6 |
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 |
