Skip to content

Commit fec916f

Browse files
committed
Comment out iOS build job and its dependencies in CI workflow
1 parent d288810 commit fec916f

1 file changed

Lines changed: 31 additions & 31 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -75,36 +75,36 @@ jobs:
7575
console.log(`Next version: ${nextVersion}`);
7676
core.setOutput('tag', nextVersion);
7777
78-
build-ios:
79-
runs-on: macos-latest
80-
needs: determine-version
81-
steps:
82-
- uses: actions/checkout@v4
83-
with:
84-
fetch-depth: 0
85-
lfs: true
86-
submodules: "recursive"
87-
88-
- name: Install protobuf
89-
run: brew install protobuf
90-
91-
- name: Set up Rust
92-
uses: dtolnay/rust-toolchain@stable
93-
with:
94-
targets: aarch64-apple-ios,aarch64-apple-ios-sim,x86_64-apple-ios
95-
96-
- name: Build IOS
97-
run: ./build_ios.sh
98-
99-
- name: Upload build artifact
100-
uses: actions/upload-artifact@v4
101-
with:
102-
name: ios-build
103-
path: |
104-
rust-sdks/target/aarch64-apple-ios/release/liblivekit_ffi.a
105-
rust-sdks/target/aarch64-apple-ios/release/liblivekit_ffi.dylib
106-
rust-sdks/target/aarch64-apple-ios-sim/release/liblivekit_ffi.a
107-
rust-sdks/target/aarch64-apple-ios-sim/release/liblivekit_ffi.dylib
78+
# build-ios:
79+
# runs-on: macos-latest
80+
# needs: determine-version
81+
# steps:
82+
# - uses: actions/checkout@v4
83+
# with:
84+
# fetch-depth: 0
85+
# lfs: true
86+
# submodules: "recursive"
87+
88+
# - name: Install protobuf
89+
# run: brew install protobuf
90+
91+
# - name: Set up Rust
92+
# uses: dtolnay/rust-toolchain@stable
93+
# with:
94+
# targets: aarch64-apple-ios,aarch64-apple-ios-sim,x86_64-apple-ios
95+
96+
# - name: Build IOS
97+
# run: ./build_ios.sh
98+
99+
# - name: Upload build artifact
100+
# uses: actions/upload-artifact@v4
101+
# with:
102+
# name: ios-build
103+
# path: |
104+
# rust-sdks/target/aarch64-apple-ios/release/liblivekit_ffi.a
105+
# rust-sdks/target/aarch64-apple-ios/release/liblivekit_ffi.dylib
106+
# rust-sdks/target/aarch64-apple-ios-sim/release/liblivekit_ffi.a
107+
# rust-sdks/target/aarch64-apple-ios-sim/release/liblivekit_ffi.dylib
108108

109109
build-android:
110110
runs-on: ubuntu-latest
@@ -155,7 +155,7 @@ jobs:
155155
release:
156156
runs-on: ubuntu-latest
157157
needs:
158-
- build-ios
158+
# - build-ios
159159
- build-android
160160
- determine-version
161161
steps:

0 commit comments

Comments
 (0)