From 73592b2340e88ba1d37c5043ddd8a054874682e6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Fri, 26 Jun 2020 17:51:36 +0200 Subject: [PATCH] Fix wren II --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f515a643..385f5170 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,7 +80,6 @@ jobs: git clone https://github.com/wren-lang/wren cd wren/projects/make make - cp ../../bin/wren_test ../../../wren - name: wren [ update ] if: steps.wren.outputs.cache-hit == 'true' @@ -89,9 +88,13 @@ jobs: if [ $(git rev-parse HEAD) != $(git ls-remote https://github.com/wren-lang/wren.git HEAD | cut -f1) ] then git pull + cd projects/make make fi + - name: wren [ install ] + run: cp wren/bin/wren_test wren/bin/wren + - uses: actions/cache@v1 name: Lua [ cache ] id: lua @@ -126,6 +129,7 @@ jobs: echo 'chuck --silent $@' > ./chuck chmod +x ./chuck ./chuck benchmark/string-equals.ck + export PATH=./wren/bin:$PATH export PATH=./lua:$PATH export PATH=./mdr:$PATH export PATH=./Gwion:$PATH -- 2.43.0