From d49e75b6d23dfee2cbfcc937b884912f462580c5 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Fri, 27 Mar 2026 17:08:13 -0400 Subject: [PATCH 1/2] ci: stop overriding .cargo/config.toml rustflags in CI workflows --- .github/workflows/hotpath-profile.yml | 2 ++ .github/workflows/rust.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/hotpath-profile.yml b/.github/workflows/hotpath-profile.yml index 244fb2b..9909986 100644 --- a/.github/workflows/hotpath-profile.yml +++ b/.github/workflows/hotpath-profile.yml @@ -16,6 +16,8 @@ jobs: fetch-depth: 0 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + rustflags: "" - name: Create metrics directory run: mkdir -p /tmp/metrics diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index deb45e3..945ed5c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -29,6 +29,7 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 with: target: ${{ matrix.target }} + rustflags: "" - name: "Make Mold the default linker" uses: rui314/setup-mold@v1 From 308ca53dd8100a6025ce87b92e0ace8830082300 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Fri, 27 Mar 2026 17:08:28 -0400 Subject: [PATCH 2/2] ci: add missing mold linker setup to hotpath-profile workflow --- .github/workflows/hotpath-profile.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/hotpath-profile.yml b/.github/workflows/hotpath-profile.yml index 9909986..dfb09c1 100644 --- a/.github/workflows/hotpath-profile.yml +++ b/.github/workflows/hotpath-profile.yml @@ -19,6 +19,9 @@ jobs: with: rustflags: "" + - name: Make Mold the default linker + uses: rui314/setup-mold@v1 + - name: Create metrics directory run: mkdir -p /tmp/metrics