diff --git a/.github/actions/build-macos-artifacts/action.yml b/.github/actions/build-macos-artifacts/action.yml index 0b2d42cebb..f2415b576a 100644 --- a/.github/actions/build-macos-artifacts/action.yml +++ b/.github/actions/build-macos-artifacts/action.yml @@ -59,9 +59,15 @@ runs: if: ${{ inputs.disable-run-tests == 'false' }} uses: taiki-e/install-action@nextest + # Get proper backtraces in mac Sonoma. Currently there's an issue with the new + # linker that prevents backtraces from getting printed correctly. + # + # - name: Run integration tests if: ${{ inputs.disable-run-tests == 'false' }} shell: bash + env: + CARGO_BUILD_RUSTFLAGS: "-Clink-arg=-Wl,-ld_classic" run: | make test sqlness-test @@ -75,6 +81,8 @@ runs: - name: Build greptime binary shell: bash + env: + CARGO_BUILD_RUSTFLAGS: "-Clink-arg=-Wl,-ld_classic" run: | make build \ CARGO_PROFILE=${{ inputs.cargo-profile }} \