Skip to content

Commit

Permalink
Add CI workflow for building xcframeworks of the c++ libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashdnazg committed Dec 15, 2023
1 parent 8ef35c5 commit f2723db
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/LT_CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Protobuf binaries
on: [push, pull_request, workflow_dispatch]

jobs:
build-ios:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Install dependencies
run: brew install automake
- name: Build Release
run: ./build-protobuf.sh
- uses: actions/upload-artifact@v2
with:
name: ios_binaries
path: out/binaries
- uses: actions/upload-artifact@v2
with:
name: ios_build_data
path: out/platform

0 comments on commit f2723db

Please sign in to comment.