From 102676b51ccdbb88cf5bf6677a6b835668021b8a Mon Sep 17 00:00:00 2001 From: momo5502 Date: Fri, 4 Apr 2025 16:16:40 +0200 Subject: [PATCH] Unify environment variables --- .github/workflows/build.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab0b53d5..2afb2310 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -301,15 +301,11 @@ jobs: with: submodules: recursive - - name: Setup Asan Environment Variables - if: ${{ contains(matrix.platform, 'Sanitizer') }} + - name: Setup Environment Variables run: | + echo "RUST_BACKTRACE=1" >> $GITHUB_ENV echo "ASAN_OPTIONS=detect_odr_violation=0" >> $GITHUB_ENV - - - name: Setup Icicle Environment Variables - if: ${{ matrix.emulator == 'Icicle' }} - run: | - echo "EMULATOR_ICICLE=1" >> $GITHUB_ENV + echo "EMULATOR_ICICLE=${{ matrix.emulator == 'Icicle' }}" >> $GITHUB_ENV - name: Download Test Configuration uses: actions/download-artifact@v4.2.1