From: Jérémie Astor Date: Fri, 26 Jun 2020 15:51:36 +0000 (+0200) Subject: Fix wren II X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=73592b2340e88ba1d37c5043ddd8a054874682e6;p=gwion.git Fix wren II --- 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