Public MacOS 14 runner #207
Workflow file for this run
This file contains hidden or 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
name: PullRequest | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build-objective-git: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os : [ macOS-14 ] | |
xcode: [ Xcode_15.1, Xcode_15.2, Xcode_15.3, Xcode_15.4, Xcode_16.1, Xcode_16.2 ] | |
arch: [ arm64 ] | |
steps: | |
- name: ls Xcode | |
run: ls -la /Applications/Xcode* | |
- 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: Show openssl version | |
run: | | |
openssl version | |
- run: script/bootstrap | |
- run: script/update_libgit2 | |
- name: Show openssl version | |
run: | | |
openssl version | |
- name: Test project | |
run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" test ARCHS="${{ matrix.arch }}" | |
- name: Archive project | |
run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" archive ARCHS="${{ matrix.arch }}" |