Skip to content

XCode 14 #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 20, 2023
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
14 changes: 12 additions & 2 deletions .github/workflows/BuildPR.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: PullRequest

on: [ pull_request ]
on:
push:
branches:
- master
pull_request:

jobs:
build-objective-git:
Expand All @@ -9,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
xcode: [ Xcode_12.4, Xcode_13.2.1 ]
xcode: [ Xcode_14.2, Xcode_13.4 ]
steps:
- name: ls Xcode
run: ls -la /Applications/Xcode*
Expand All @@ -20,7 +24,13 @@ jobs:
submodules: true
- name: Set XCode Version
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app
- name: Show openssl version
run: |
openssl version
- name: pre build
run: script/bootstrap && script/update_libgit2
- name: Show openssl version
run: |
openssl version
- name: Test and archive project
run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" test archive ARCHS="x86_64"