Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force update rust on the CI #6025

Merged
merged 2 commits into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ios-end-to-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
uses: actions/checkout@v4

- name: Configure Rust
run: rustup target add aarch64-apple-ios aarch64-apple-ios-sim
run: |
rustup default stable
rustup update stable
rustup target add aarch64-apple-ios aarch64-apple-ios-sim

- name: Configure Xcode project
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ios-screenshots-creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
with:
xcode-version: '15.0.1'
- name: Configure Rust
run: rustup target add aarch64-apple-ios-sim x86_64-apple-ios
run: |
rustup default stable
rustup update stable
rustup target add aarch64-apple-ios-sim x86_64-apple-ios

- name: Configure Xcode project
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ios-screenshots-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: iOS test screenshots
on:

Check warning on line 3 in .github/workflows/ios-screenshots-tests.yml

View workflow job for this annotation

GitHub Actions / check-formatting

3:1 [truthy] truthy value should be one of [false, true]
pull_request:
types:
- closed
Expand Down Expand Up @@ -47,7 +47,10 @@
with:
xcode-version: '15.0.1'
- name: Configure Rust
run: rustup target add aarch64-apple-ios-sim
run: |
rustup default stable
rustup update stable
rustup target add aarch64-apple-ios-sim

- name: Configure Xcode project
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ios-validate-build-schemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- ios/.swiftformat
- ios/**/*.swift
- ios/**/*.xctestplan
- Cargo.toml
workflow_dispatch:
jobs:
test:
Expand Down Expand Up @@ -47,7 +48,10 @@ jobs:
with:
xcode-version: '15.0.1'
- name: Configure Rust
run: rustup target add aarch64-apple-ios-sim x86_64-apple-ios
run: |
rustup default stable
rustup update stable
rustup target add aarch64-apple-ios-sim x86_64-apple-ios

- name: Configure Xcode project
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ jobs:
with:
xcode-version: '15.0.1'
- name: Configure Rust
run: rustup target add aarch64-apple-ios-sim
run: |
rustup default stable
rustup update stable
rustup target add aarch64-apple-ios-sim

- name: Configure Xcode project
run: |
Expand Down
Loading