Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/BuildPR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,23 @@ on: [pull_request]

jobs:
buildGitx:
name: Build MGScopeBar
runs-on: macOS-latest
name: Build
runs-on: macos-26
strategy:
fail-fast: false
matrix:
xcode: [ Xcode_14.2.0, Xcode_13.4 ]
xcode: [ 26.3 ]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Set XCode Version
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app
- name: ls Xcode
run: ls -la /Applications/Xcode*
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode }}
- name: Build project
run: xcodebuild -workspace MGScopeBar.xcodeproj/project.xcworkspace -scheme MGScopeBar archive ARCHS="arm64 x86_64"

Loading