From f222a10558a33ec078f54dd6e4564dd3afb25e15 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Fri, 28 Jun 2024 11:18:15 -0400 Subject: [PATCH] Disable debug info for all example jobs --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ce4b4b06cf44..c7d4bf9ec3f9 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -178,6 +178,10 @@ jobs: runs-on: ubuntu-latest container: image: amd64/rust + env: + # avoid debug symbols at all (without this compiling + # the examples fills up the disk) + RUSTFLAGS: "-C debuginfo=0 -C incremental=false" steps: - uses: actions/checkout@v4 with: