diff options
| author | Ry Dahl <ry@tinyclouds.org> | 2019-10-28 22:04:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-28 22:04:24 -0400 |
| commit | 38f01f73a485def7cf5d391b18359db2b509782d (patch) | |
| tree | 258987728efbbfedcd917ab15441d097ae8447c8 /.github/workflows | |
| parent | a7992e77037353ee4c7d3d480dcbd907961087bd (diff) | |
Move prebuilt binaries to third_party (#3227)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dbed7f270..3bed415b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,19 +72,19 @@ jobs: # 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`/third_party/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`/third_party/prebuilt/mac echo ::add-path::`pwd`/target/release - name: Environment (windows) if: startsWith(matrix.os, 'windows') run: | - echo ::add-path::$(pwd)\prebuilt\win + echo ::add-path::$(pwd)\third_party\prebuilt\win echo ::add-path::$(pwd)\target\release - name: Log versions |
