From 7d764230e315c1048ad4d42a8fe3165ea4dfb810 Mon Sep 17 00:00:00 2001 From: Artyom Tetyukhin <51746822+arttet@users.noreply.github.com> Date: Fri, 22 Dec 2023 15:22:07 +0400 Subject: [PATCH] bug: reproduce the bug related to the latest ld --- .github/workflows/rust-compiler-builder.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-compiler-builder.yml b/.github/workflows/rust-compiler-builder.yml index c8551eb..98af91c 100644 --- a/.github/workflows/rust-compiler-builder.yml +++ b/.github/workflows/rust-compiler-builder.yml @@ -19,12 +19,21 @@ jobs: # https://github.com/actions/runner-images/tree/main/images/macos # https://developer.apple.com/support/xcode/ - - rust-targets: arm64e-apple-ios,aarch64-apple-ios,arm64e-apple-darwin,aarch64-apple-darwin + - rust-targets: arm64e-apple-darwin os: macos-13 xcode-version: 15.0.1 rust-config: configure rust-verbose-level: 0 - rust-use-lld: true + rust-use-lld: false + macosx_deployment_target: 11.0 + iphoneos_deployment_target: 14.0 + + - rust-targets: arm64e-apple-darwin + os: macos-13 + xcode-version: 14.3.1 + rust-config: configure + rust-verbose-level: 0 + rust-use-lld: false macosx_deployment_target: 11.0 iphoneos_deployment_target: 14.0 @@ -103,3 +112,10 @@ jobs: with: name: rust-${{ matrix.rust-targets }}_${{ matrix.xcode-version }}-spec path: ./*.json + + - name: Archive the Rust build + if: always() + uses: actions/upload-artifact@v4 + with: + name: rust-${{ matrix.xcode-version }} + path: ./rust/build