diff options
-rwxr-xr-x | ci/ios/deploy_and_run_ios_binary_on_ios_simulator.py (renamed from ci/ios/deploy_and_run_x86_64_binary_on_ios_simulator.py) | 0 | ||||
-rwxr-xr-x | ci/run.sh | 6 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ci/ios/deploy_and_run_x86_64_binary_on_ios_simulator.py b/ci/ios/deploy_and_run_ios_binary_on_ios_simulator.py index 40c00bb573..40c00bb573 100755 --- a/ci/ios/deploy_and_run_x86_64_binary_on_ios_simulator.py +++ b/ci/ios/deploy_and_run_ios_binary_on_ios_simulator.py @@ -113,8 +113,12 @@ case "$TARGET" in grep "^PASSED .* tests" /tmp/out ;; + i386-apple-ios) + python ./ci/ios/deploy_and_run_ios_binary_on_ios_simulator.py $CARGO_TARGET_DIR/$TARGET/debug/libc-test + ;; + x86_64-apple-ios) - python ./ci/ios/deploy_and_run_x86_64_binary_on_ios_simulator.py $CARGO_TARGET_DIR/$TARGET/debug/libc-test + python ./ci/ios/deploy_and_run_ios_binary_on_ios_simulator.py $CARGO_TARGET_DIR/$TARGET/debug/libc-test ;; arm-unknown-linux-gnueabihf) |