Skip to content

Commit 4415e8a

Browse files
Merge pull request #8 from weslleymurdock/fix-release-2.14.1
improved pipeline
2 parents df31e24 + eb73ee2 commit 4415e8a

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

Diff for: .github/workflows/pjsua2.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
permissions:
1515
contents: write
1616
steps:
17-
- name: Setup Xcode
18-
uses: maxim-lobanov/[email protected]
19-
with:
20-
xcode-version: '15.1'
17+
- name: Selecting Xcode Version
18+
run: sudo xcode-select -switch /Applications/Xcode_15.2.app
19+
20+
- name: Running Xcode version Is?
21+
run: /usr/bin/xcodebuild -version
22+
2123
- name: Checkout
2224
uses: actions/checkout@v4
2325
with:

Diff for: .github/workflows/release.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ jobs:
1111
permissions:
1212
contents: write
1313
steps:
14-
- name: Setup Xcode
15-
uses: maxim-lobanov/[email protected]
16-
with:
17-
xcode-version: '15.1'
14+
- name: Selecting Xcode Version
15+
run: sudo xcode-select -switch /Applications/Xcode_15.2.app
16+
17+
- name: Running Xcode version Is?
18+
run: /usr/bin/xcodebuild -version
19+
1820
- name: Checkout
1921
uses: actions/checkout@v4
2022
with:
@@ -23,7 +25,7 @@ jobs:
2325
run: |
2426
brew install nasm autoconf automake libtool swig
2527
sed -i'' -e 's/xamarin/maui/g' ${{ github.workspace }}/pjproject/pjsip-apps/src/swig/csharp/Makefile
26-
./build h264 opus ssl -a=x86_64,arm64
28+
./build h264 opus ssl -a=x86_64,arm64 --ci
2729
tar -zcvf libpjsua2.tar.gz ./libpjsua2
2830
- name: release
2931
uses: actions/create-release@v1

Diff for: build

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export PATH_REPO="/Users/runner/work/libpjsua2-ios/libpjsua2-ios"
1313
export BASE_DIR=`pwd -P`
1414

1515
export MIN_IOS_VERSION="11.0"
16-
export IOS_SDK_VERSION="17.0"
16+
export IOS_SDK_VERSION="17.2"
1717
export AVAILABLE_ARCHS
1818
export USE_ARCHS=()
1919

0 commit comments

Comments
 (0)