From 34cb41c366a3485bb8a78fdd2065f0ddcf618e76 Mon Sep 17 00:00:00 2001 From: Artyom Tetyukhin <51746822+arttet@users.noreply.github.com> Date: Fri, 4 Oct 2024 22:00:54 +0400 Subject: [PATCH] WIP --- .github/workflows/rust-compiler-builder.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/rust-compiler-builder.yml b/.github/workflows/rust-compiler-builder.yml index ea97cdd..26bfd66 100644 --- a/.github/workflows/rust-compiler-builder.yml +++ b/.github/workflows/rust-compiler-builder.yml @@ -70,7 +70,7 @@ jobs: xcode-version: 15.4 rust-config: configure rust-no-debug-assertions: 1 - rust-use-lld: true + rust-use-lld: self-contained macosx_deployment_target: 11.0 - rust-targets: arm64e-apple-ios @@ -89,7 +89,7 @@ jobs: xcode-version: 15.4 rust-config: configure rust-no-debug-assertions: 1 - rust-use-lld: true + rust-use-lld: self-contained macosx_deployment_target: 11.0 iphoneos_deployment_target: 15.0 @@ -142,12 +142,6 @@ jobs: - name: Install sccache run: brew install sccache - - name: Install llvm - run: | - brew install llvm - brew install lld - echo "PATH=$PATH:/opt/homebrew/opt/llvm/bin:/usr/local/opt/llvm/bin" >> $GITHUB_ENV - - name: Show System Info run: | echo "::group::uname" @@ -191,10 +185,6 @@ jobs: ld -v echo "::endgroup::" - echo "::group::lld" - lld -flavor ld --version - echo "::endgroup::" - - name: Checkout uses: actions/checkout@v4