diff options
| author | Bert Belder <bertbelder@gmail.com> | 2020-03-17 17:06:40 -0700 |
|---|---|---|
| committer | Bert Belder <bertbelder@gmail.com> | 2020-03-17 17:42:22 -0700 |
| commit | 0ef99ac970729dac0de8ccb78eed8c1c74fcd350 (patch) | |
| tree | 1b810753ccd8ca8a6bddb467d1ff9d04e1c9968f | |
| parent | a2b285158242b86a002e353776d52742ea35a496 (diff) | |
Set environment variables correctly in Github Actions (#4412)
| -rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 002406e3e..d7938c809 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,11 @@ jobs: kind: 'test_debug' - os: macOS-latest kind: 'test_debug' + + env: + RUST_BACKTRACE: full + RUSTC_WRAPPER: sccache + steps: - name: Configure git run: git config --global core.symlinks true @@ -70,13 +75,6 @@ jobs: Select-Object -Skip 1 | ForEach-Object { Move-Item "$_" "$_.disabled" } - - name: Environment (common) - run: | - echo ::set-env name=GH_ACTIONS::1 - echo ::set-env name=RUSTC_WRAPPER::sccache - echo ::set-env name=DENO_BUILD_MODE::release - echo ::set-env name=RUST_BACKTRACE::full - - name: Environment (linux) if: startsWith(matrix.os, 'ubuntu') # In order to test the installer scripts in std we need a deno |
