From 86d6e0790d74d4fcdb6f23b79e06a6ea1f5ca560 Mon Sep 17 00:00:00 2001 From: David Lattimore Date: Mon, 22 Sep 2025 10:18:36 +1000 Subject: [PATCH] Use wild for build in CI --- .github/workflows/ci.yml | 2 ++ README.md | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02a448cb9..a35934e8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,6 +79,7 @@ jobs: with: targets: x86_64-unknown-linux-gnu,x86_64-unknown-linux-musl,aarch64-unknown-linux-gnu,aarch64-unknown-linux-musl,riscv64gc-unknown-linux-gnu,riscv64gc-unknown-linux-musl components: rustc-codegen-cranelift-preview + - uses: davidlattimore/wild-action@latest - uses: actions/cache@v4 with: path: | @@ -105,6 +106,7 @@ jobs: id: rust-toolchain with: components: clippy + - uses: davidlattimore/wild-action@latest - uses: actions/cache@v4 with: path: | diff --git a/README.md b/README.md index 0f552fdc1..4cbe59cbe 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,11 @@ linker = "clang" rustflags = ["-C", "link-arg=--ld-path=wild"] ``` +## Using wild in CI + +If you'd like to use Wild as your linker for Rust code in CI, see +[wild-action](https://github.com/davidlattimore/wild-action). + ## Q&A ### Why another linker?