Skip to content

Commit

Permalink
Fixing tests destination
Browse files Browse the repository at this point in the history
  • Loading branch information
kober32 committed Nov 23, 2023
1 parent cd14544 commit a18f8fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
OP_URL: ${{ secrets.TESTS_OP_URL }}
ER_URL: ${{ secrets.TESTS_ER_URL }}
IN_URL: ${{ secrets.TESTS_IN_URL }}
run: ./scripts/test.sh -sdkconfig "$SDK_CONFIG" -er "$ER_URL" -op "$OP_URL" -in "$IN_URL" -cl "$CL_URL" -clu "$CL_LGN" -clp "$CL_PWD" -cla "$CL_AID"
run: ./scripts/test.sh -destination "platform=iOS Simulator,OS=17.0.1,name=iPhone 15" -sdkconfig "$SDK_CONFIG" -er "$ER_URL" -op "$OP_URL" -in "$IN_URL" -cl "$CL_URL" -clu "$CL_LGN" -clp "$CL_PWD" -cla "$CL_AID"
2 changes: 1 addition & 1 deletion scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -u # stop when undefined variable is used
SCRIPT_FOLDER=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )

IOS_VERSION=$(xcrun simctl list | grep "\-\- iOS" | tr -d - | tr -d " " | tr -d "iOS")
DESTINATION="platform=iOS Simulator,OS=${IOS_VERSION},name=iPhone 13 mini"
DESTINATION="platform=iOS Simulator,OS=${IOS_VERSION},name=iPhone 15"

CL_URL=""
CL_LGN=""
Expand Down

0 comments on commit a18f8fe

Please sign in to comment.