-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matty Cross
committed
Dec 17, 2024
1 parent
bc6bc58
commit 32e943c
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Run tests | ||
on: [push] | ||
# on: | ||
# push: | ||
# branches: [$default-branch] | ||
# pull_request: | ||
# branches: [$default-branch] | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test_macOS: | ||
name: Build and Test on macOS | ||
runs-on: macos-15 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Test | ||
run: | | ||
make ci | ||
xcodebuild test -scheme "Cuckoo-macOS" -workspace Cuckoo.xcworkspace | ||
test_iOS: | ||
name: Build and Test on iOS simulator | ||
runs-on: macos-15 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: List available Xcode versions | ||
run: ls /Applications | grep Xcode | ||
- name: Show current version of Xcode | ||
run: xcodebuild -version | ||
- name: Test | ||
run: | | ||
# xcrun xctrace returns via stderr, not the expected stdout (see https://developer.apple.com/forums/thread/663959) | ||
device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}' | sed -e "s/ Simulator$//"` | ||
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'` | ||
make ci | ||
xcodebuild test -scheme "Cuckoo-iOS" -workspace Cuckoo.xcworkspace -destination "platform=iOS Simulator,name=$device" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters