summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml7
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: |