We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 886e508 commit c4369d6Copy full SHA for c4369d6
1 file changed
gemstone/justfile
@@ -42,9 +42,10 @@ install-android-targets:
42
test-ios:
43
#!/usr/bin/env bash
44
set -o pipefail
45
+ export NSUnbufferedIO=YES
46
DEVICE_ID=$(xcrun simctl list devices available | grep iPhone | head -1 | sed 's/.*(\([A-F0-9-]*\)).*/\1/')
47
echo "Using Simulator: $DEVICE_ID"
- NSUnbufferedIO=YES xcodebuild -project tests/ios/GemTest/GemTest.xcodeproj \
48
+ xcodebuild -project tests/ios/GemTest/GemTest.xcodeproj \
49
-scheme GemTest \
50
-destination "platform=iOS Simulator,id=$DEVICE_ID,arch=arm64" \
51
test | xcbeautify
0 commit comments