Skip to content

Commit 15b1113

Browse files
committedMar 25, 2024
Force the rust version to the current stable release
1 parent 030d55d commit 15b1113

5 files changed

+20
-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

+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 x86_64-apple-ios
50+
run: |
51+
rustup default stable
52+
rustup update stable
53+
rustup target add aarch64-apple-ios-sim x86_64-apple-ios
5154
5255
- name: Configure Xcode project
5356
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)