Skip to content

Commit ce9ab55

Browse files
committed
Merge branch 'fix-broken-ios-ci-by-updating-rust-ios-576'
2 parents 030d55d + ed7b7e2 commit ce9ab55

5 files changed

+21
-5
lines changed

.github/workflows/ios-end-to-end-tests.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- name: Configure Rust
33-
run: rustup target add aarch64-apple-ios aarch64-apple-ios-sim
33+
run: |
34+
rustup default stable
35+
rustup update stable
36+
rustup target add aarch64-apple-ios aarch64-apple-ios-sim
3437
3538
- name: Configure Xcode project
3639
run: |

.github/workflows/ios-screenshots-creation.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ jobs:
3131
with:
3232
xcode-version: '15.0.1'
3333
- name: Configure Rust
34-
run: rustup target add aarch64-apple-ios-sim x86_64-apple-ios
34+
run: |
35+
rustup default stable
36+
rustup update stable
37+
rustup target add aarch64-apple-ios-sim x86_64-apple-ios
3538
3639
- name: Configure Xcode project
3740
run: |

.github/workflows/ios-screenshots-tests.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ jobs:
4747
with:
4848
xcode-version: '15.0.1'
4949
- name: Configure Rust
50-
run: rustup target add aarch64-apple-ios-sim
50+
run: |
51+
rustup default stable
52+
rustup update stable
53+
rustup target add aarch64-apple-ios-sim
5154
5255
- name: Configure Xcode project
5356
run: |

.github/workflows/ios-validate-build-schemas.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
- ios/.swiftformat
1313
- ios/**/*.swift
1414
- ios/**/*.xctestplan
15+
- Cargo.toml
1516
workflow_dispatch:
1617
jobs:
1718
test:
@@ -47,7 +48,10 @@ jobs:
4748
with:
4849
xcode-version: '15.0.1'
4950
- name: Configure Rust
50-
run: rustup target add aarch64-apple-ios-sim x86_64-apple-ios
51+
run: |
52+
rustup default stable
53+
rustup update stable
54+
rustup target add aarch64-apple-ios-sim x86_64-apple-ios
5155
5256
- name: Configure Xcode project
5357
run: |

.github/workflows/ios.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ jobs:
7474
with:
7575
xcode-version: '15.0.1'
7676
- name: Configure Rust
77-
run: rustup target add aarch64-apple-ios-sim
77+
run: |
78+
rustup default stable
79+
rustup update stable
80+
rustup target add aarch64-apple-ios-sim
7881
7982
- name: Configure Xcode project
8083
run: |

0 commit comments

Comments
 (0)