diff options
| author | Bug Magnet <marco.nikic@mullvad.net> | 2024-03-07 09:26:21 +0100 |
|---|---|---|
| committer | Bug Magnet <marco.nikic@mullvad.net> | 2024-03-07 09:26:21 +0100 |
| commit | efe4580c7f64a9892e4558359b36e920f90faa1f (patch) | |
| tree | be0f7b8e149309935e150753e1ed627aa3dd74c2 | |
| parent | 7c6c854bb8790c36c9631769b4cb127c2018ca9d (diff) | |
| download | mullvadvpn-efe4580c7f64a9892e4558359b36e920f90faa1f.tar.xz mullvadvpn-efe4580c7f64a9892e4558359b36e920f90faa1f.zip | |
Fix end to end test build script
| -rw-r--r-- | .github/workflows/ios-end-to-end-tests.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ios-end-to-end-tests.yml b/.github/workflows/ios-end-to-end-tests.yml index 6829f4f18b..7c6ba0e90a 100644 --- a/.github/workflows/ios-end-to-end-tests.yml +++ b/.github/workflows/ios-end-to-end-tests.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v4 - name: Configure Rust - run: rustup target install aarch64-apple-ios aarch64-apple-ios-sim + run: rustup target add aarch64-apple-ios aarch64-apple-ios-sim - name: Configure Xcode project run: | @@ -54,6 +54,7 @@ jobs: set -o pipefail && env NSUnbufferedIO=YES xcodebuild \ -project MullvadVPN.xcodeproj \ -scheme MullvadVPNUITests \ + -configuration Debug \ -testPlan MullvadVPNUITestsSmoke \ -destination "platform=iOS,id=$TEST_DEVICE_UDID" \ test 2>&1 | xcbeautify --report junit --report-path test-report |
