Skip to content

Commit 61ef22b

Browse files
authored
Merge pull request #60 from gitx/XCode-14
XCode 14
2 parents d872ee9 + ccd9cc7 commit 61ef22b

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/BuildPR.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: PullRequest
22

3-
on: [ pull_request ]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
610
build-objective-git:
@@ -9,7 +13,7 @@ jobs:
913
strategy:
1014
fail-fast: false
1115
matrix:
12-
xcode: [ Xcode_12.4, Xcode_13.2.1 ]
16+
xcode: [ Xcode_14.2, Xcode_13.4 ]
1317
steps:
1418
- name: ls Xcode
1519
run: ls -la /Applications/Xcode*
@@ -20,7 +24,13 @@ jobs:
2024
submodules: true
2125
- name: Set XCode Version
2226
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app
27+
- name: Show openssl version
28+
run: |
29+
openssl version
2330
- name: pre build
2431
run: script/bootstrap && script/update_libgit2
32+
- name: Show openssl version
33+
run: |
34+
openssl version
2535
- name: Test and archive project
2636
run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" test archive ARCHS="x86_64"

0 commit comments

Comments
 (0)