Skip to content

Commit

Permalink
Set environment variables correctly in Github Actions (denoland#4412)
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Mar 18, 2020
1 parent a2b2851 commit 0ef99ac
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0ef99ac

Please sign in to comment.