libpjsua2 builds 🚀 #73
This file contains 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: Build pjsua2 for ios | |
run-name: libpjsua2 builds 🚀 | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
libpjsua2-ios: | |
runs-on: self-hosted | |
name: iOS Build | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: build all ios archs | |
run: | | |
brew install nasm autoconf automake libtool swig | |
sed -i'' -e 's/xamarin/maui/g' ${{ github.workspace }}/pjproject/pjsip-apps/src/swig/csharp/Makefile | |
./build h264 opus ssl bcg729 -a=x86_64,arm64 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: libpjsua2-ios | |
path: ${{ github.workspace }}/libpjsua2 |