diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 0593e8e..875603b 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -31,6 +31,13 @@ jobs: test: runs-on: ubuntu-latest + # Full debuginfo made the solitaire_engine test-binary link peak past the + # runner's memory — ld was OOM-killed (signal 9) on runs 447 and 486. + # line-tables-only keeps file:line in panic backtraces while cutting the + # link's memory footprint enough to fit the runner. + env: + CARGO_PROFILE_DEV_DEBUG: line-tables-only + steps: - name: Checkout uses: actions/checkout@v4