diff options
author | Bert Belder <bertbelder@gmail.com> | 2021-06-29 21:01:34 +0000 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2021-06-29 21:01:34 +0000 |
commit | 622f9c688902411e347038e82fc5c354c60678cf (patch) | |
tree | 91f835bdfaac65b320afdbed4c1e141c493e308d | |
parent | 5db9f627e3b105ffc1ed43bb81732886308ddfdf (diff) |
ci: don't set DENO_CANARY when releasing (#11181)
Fixes: #11179
-rw-r--r-- | .github/workflows/ci.yml | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a91bea9b2..f7b63a195 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -146,6 +146,15 @@ jobs: if: "!matrix.use_sysroot && !startsWith(matrix.os, 'windows')" run: echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV + - name: Configure canary build + if: | + matrix.kind == 'test' && + matrix.profile == 'release' && + github.repository == 'denoland/deno' && + github.ref == 'refs/heads/main' + shell: bash + run: echo "DENO_CANARY=true" >> $GITHUB_ENV + - name: Set up Linux sysroot with Ubuntu 18.04 and LLVM if: matrix.use_sysroot run: | @@ -212,7 +221,7 @@ jobs: # Miscellaneous flags. export CARGO_TERM_COLOR=always export CI=true - export DENO_CANARY=true + export DENO_CANARY=$DENO_CANARY ___ - name: Log versions @@ -297,16 +306,6 @@ jobs: ~/.cargo/registry/index/github.com-1ecc6299db9ec823 fi - - name: Configure canary build - if: | - matrix.kind == 'test' && - matrix.profile == 'release' && - !matrix.use_sysroot && - github.repository == 'denoland/deno' && - github.ref == 'refs/heads/main' - shell: bash - run: echo "DENO_CANARY=true" >> $GITHUB_ENV - - name: test_format.js if: matrix.kind == 'lint' run: deno run --unstable --allow-write --allow-read --allow-run ./tools/format.js --check |