Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesquires committed Oct 4, 2024
1 parent 364b50b commit 7cc8593
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
44 changes: 21 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ env:
jobs:
env-details:
name: Environment details
runs-on: macos-14
runs-on: macos-14-large
steps:
- name: xcode version
run: xcodebuild -version -sdk
Expand All @@ -43,7 +43,7 @@ jobs:
test-iOS:
name: iOS unit test
runs-on: macos-14
runs-on: macos-14-large
steps:
- name: git checkout
uses: actions/checkout@v4
Expand All @@ -59,7 +59,7 @@ jobs:
test-tvOS:
name: tvOS unit test
runs-on: macos-14
runs-on: macos-14-large
steps:
- name: git checkout
uses: actions/checkout@v4
Expand All @@ -75,7 +75,7 @@ jobs:
test-watchOS:
name: watchOS unit test
runs-on: macos-14
runs-on: macos-14-large
steps:
- name: git checkout
uses: actions/checkout@v4
Expand All @@ -89,27 +89,25 @@ jobs:
-destination "$WATCHOS_DEST" \
CODE_SIGN_IDENTITY="-" | xcpretty -c
# VisionOS simulator not install on GitHub Actions anymore?
#
# test-visionOS:
# name: visionOS unit test
# runs-on: macos-14
# steps:
# - name: git checkout
# uses: actions/checkout@v4
#
# - name: test
# run: |
# set -o pipefail
# xcodebuild clean test \
# -project "$PROJECT" \
# -scheme "$SCHEME" \
# -destination "$VISIONOS_DEST" \
# CODE_SIGN_IDENTITY="-" | xcpretty -c
test-visionOS:
name: visionOS unit test
runs-on: macos-14-large
steps:
- name: git checkout
uses: actions/checkout@v4

- name: test
run: |
set -o pipefail
xcodebuild clean test \
-project "$PROJECT" \
-scheme "$SCHEME" \
-destination "$VISIONOS_DEST" \
CODE_SIGN_IDENTITY="-" | xcpretty -c
test-macOS:
name: macOS unit test
runs-on: macos-14
runs-on: macos-14-large
steps:
- name: git checkout
uses: actions/checkout@v4
Expand All @@ -125,7 +123,7 @@ jobs:
build-example:
name: build example project
runs-on: macos-14
runs-on: macos-14-large
steps:
- name: git checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spm-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
main:
name: SwiftPM Build
runs-on: macos-14
runs-on: macos-14-large
steps:
- name: git checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 7cc8593

Please sign in to comment.