Skip to content

Commit

Permalink
git commit -m "Updated GitHub CI"
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Dec 23, 2024
1 parent e911e64 commit 90c18fd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,32 @@ env:
SCHEME: "MenuBarExtraAccess-CI"

jobs:
macOS-13:
name: macOS 13
runs-on: macos-13
steps:
- uses: actions/checkout@main
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build
run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=macOS,name=Any Mac" | xcpretty && exit ${PIPESTATUS[0]}
# - name: Unit Tests
# run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "platform=macOS" | xcpretty && exit ${PIPESTATUS[0]}

macOS-14:
name: macOS 14
runs-on: macos-14
steps:
- uses: actions/checkout@main
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build
run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=macOS,name=Any Mac" | xcpretty && exit ${PIPESTATUS[0]}
# - name: Unit Tests
# run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "platform=macOS" | xcpretty && exit ${PIPESTATUS[0]}

macOS:
name: macOS 15
runs-on: macos-15
Expand Down

0 comments on commit 90c18fd

Please sign in to comment.