From 5a7dffe42775892cb2171ea1a2bbd9c3ea8977f4 Mon Sep 17 00:00:00 2001 From: Nick Stott Date: Mon, 21 Oct 2019 11:58:45 -0400 Subject: Reenable std tests that were disabled during merge (#3159) --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to '.github/workflows') 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: | -- cgit v1.2.3