Skip to content

Commit 19c8c79

Browse files
committed
Force the rust version to 1.77.0
1 parent 030d55d commit 19c8c79

5 files changed

+15
-5
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ 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 update 1.77.0
35+
rustup target add aarch64-apple-ios aarch64-apple-ios-sim
3436
3537
- name: Configure Xcode project
3638
run: |

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ 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 update 1.77.0
36+
rustup target add aarch64-apple-ios-sim x86_64-apple-ios
3537
3638
- name: Configure Xcode project
3739
run: |

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ 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 update 1.77.0
52+
rustup target add aarch64-apple-ios-sim
5153
5254
- name: Configure Xcode project
5355
run: |

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ jobs:
4747
with:
4848
xcode-version: '15.0.1'
4949
- name: Configure Rust
50-
run: rustup target add aarch64-apple-ios-sim x86_64-apple-ios
50+
run: |
51+
rustup update 1.77.0
52+
rustup target add aarch64-apple-ios-sim x86_64-apple-ios
5153
5254
- name: Configure Xcode project
5355
run: |

.github/workflows/ios.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ 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 update 1.77.0
79+
rustup target add aarch64-apple-ios-sim
7880
7981
- name: Configure Xcode project
8082
run: |

0 commit comments

Comments
 (0)