Fix runner.temp usage in local smoke env

This commit is contained in:
andrussal 2025-12-02 07:15:59 +01:00
parent 254a4e6061
commit f336ad8141

View File

@ -131,14 +131,15 @@ jobs:
LOCAL_DEMO_VALIDATORS: 1
LOCAL_DEMO_EXECUTORS: 1
NOMOS_CIRCUITS: ${{ github.workspace }}/.tmp/nomos-circuits
CARGO_TARGET_DIR: ${{ runner.temp }}/target-local
CARGO_INCREMENTAL: 0
CARGO_PROFILE_DEV_DEBUG: 0
RUSTFLAGS: -C debuginfo=0
steps:
- uses: actions/checkout@v4
- name: Set temp dir
run: echo "TMPDIR=${{ runner.temp }}" >> "$GITHUB_ENV"
run: |
echo "TMPDIR=${{ runner.temp }}" >> "$GITHUB_ENV"
echo "CARGO_TARGET_DIR=${{ runner.temp }}/target-local" >> "$GITHUB_ENV"
- name: Install system dependencies
run: |
set -euo pipefail