Skip to content

Commit dfdd02b

Browse files
author
Thomas Taschauer
committed
fix test action
1 parent 4ecd68d commit dfdd02b

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/ios_main.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ jobs:
2828
name: test
2929
runs-on: macos-latest
3030
steps:
31-
# start simulator as early as possible in order to give it enough time to boot
32-
- name: simulator
33-
run: $(xcode-select --print-path)$(echo /Applications/Simulator.app/Contents/MacOS/Simulator) --args -CurrentDeviceUDID $(xcrun instruments -s | grep -Eo "iPhone 8 .*" | grep -Eo "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/") &
34-
3531
- uses: actions/checkout@v1
3632
- name: Checkout submodule
3733
run: git submodule update --init --recursive

fastlane/Fastfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ platform :ios do
4545
lane :tests do
4646
run_tests(
4747
workspace: "OpenDocumentReader.xcworkspace",
48-
scheme: "ODR Full"
48+
scheme: "ODR Full",
49+
prelaunch_simulator: true
4950
)
5051
end
5152
end

0 commit comments

Comments
 (0)