diff options
| author | Nick Stott <nick@nickstott.com> | 2019-10-21 11:58:45 -0400 |
|---|---|---|
| committer | Ry Dahl <ry@tinyclouds.org> | 2019-10-21 11:58:45 -0400 |
| commit | 5a7dffe42775892cb2171ea1a2bbd9c3ea8977f4 (patch) | |
| tree | 7466cef7692dfa72ae7059c3148208026dcf444d /.github/workflows/build.yml | |
| parent | 2b2868b8a77bb545238ce19e039e2018578fb5ad (diff) | |
Reenable std tests that were disabled during merge (#3159)
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8b99c208c..b50ebf2cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,18 +61,25 @@ jobs: - name: Environment (linux) if: startsWith(matrix.os, 'ubuntu') + # In order to test the installer scripts in std we need a deno + # executable in the path. See + # https://github.com/denoland/deno/blob/27cd2c97f18c0392bc04c66b786717b2bc677315/std/installer/mod.ts#L185-L193 + # TODO(ry) This path modification should rather be done in "cargo test". run: | echo ::add-path::`pwd`/prebuilt/linux64 + echo ::add-path::`pwd`/target/release - name: Environment (mac) if: startsWith(matrix.os, 'macOS') run: | echo ::add-path::`pwd`/prebuilt/mac + echo ::add-path::`pwd`/target/release - name: Environment (windows) if: startsWith(matrix.os, 'windows') run: | echo ::add-path::%cd%\prebuilt\win + echo ::add-path::%cd%\target\release - name: Log versions run: | |
