From 12216e97293d212f82dbb464e090e4672f147adc Mon Sep 17 00:00:00 2001 From: Henrique A Klein Date: Tue, 23 Jan 2024 07:49:31 -0300 Subject: [PATCH] Fix: Attempt to fix rust dependencies. Windows already works --- .github/workflows/Android-cmake.yml | 1 - .github/workflows/Linux-cmake.yml | 1 - .github/workflows/OSX-cmake.yml | 1 - .github/workflows/iOS-cmake.yml | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/Android-cmake.yml b/.github/workflows/Android-cmake.yml index 4e97fceb..1a870a8f 100644 --- a/.github/workflows/Android-cmake.yml +++ b/.github/workflows/Android-cmake.yml @@ -51,7 +51,6 @@ jobs: rm ndk.zip - name: Install Rust dependencies run: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh rustup update rustup toolchain install stable rustup default stable diff --git a/.github/workflows/Linux-cmake.yml b/.github/workflows/Linux-cmake.yml index d12d072e..d19e1fb6 100644 --- a/.github/workflows/Linux-cmake.yml +++ b/.github/workflows/Linux-cmake.yml @@ -23,7 +23,6 @@ jobs: - name: Install Rust dependencies run: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh rustup update rustup toolchain install stable rustup default stable diff --git a/.github/workflows/OSX-cmake.yml b/.github/workflows/OSX-cmake.yml index d15984cb..bd81e581 100644 --- a/.github/workflows/OSX-cmake.yml +++ b/.github/workflows/OSX-cmake.yml @@ -42,7 +42,6 @@ jobs: rustup default stable rustup target add x86_64-apple-darwin rustup target add aarch64-apple-darwin - rustup component add rust-src --toolchain nightly-x86_64-apple-darwin rustup target add wasm32-unknown-emscripten cargo install cbindgen cargo-lipo diff --git a/.github/workflows/iOS-cmake.yml b/.github/workflows/iOS-cmake.yml index 297392cf..5d01b34b 100644 --- a/.github/workflows/iOS-cmake.yml +++ b/.github/workflows/iOS-cmake.yml @@ -45,7 +45,7 @@ jobs: rustup toolchain install stable rustup default stable rustup toolchain install stable-x86_64-apple-darwin - rustup target add x86_64-apple-ios aarch64-apple-ios-sim aarch64-apple-ios + rustup target add x86_64-apple-ios aarch64-apple-ios-sim aarch64-apple-ios aarch64-apple-darwin x86_64-apple-darwin cargo install cbindgen cargo-lipo - name: Create Build Directory