From 8efec080e089d099fce911be378b49151b3c439e Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Wed, 18 Nov 2020 18:07:05 +0800 Subject: [PATCH] (ci): fix ci test flow (#1301) --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03d9c74..9e71d88 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,10 +45,13 @@ jobs: - uses: actions/checkout@v2 - - name: Initialize sandbox + - name: Create Sandbox Directory run: | SANDBOX_DIR=$(mktemp -d) || exit 1 - echo ::set-env name=SANDBOX_DIR::$SANDBOX_DIR + echo "SANDBOX_DIR=$SANDBOX_DIR" >> $GITHUB_ENV + + - name: Initialize Sandbox + run: | ./makem.sh -vv --sandbox $SANDBOX_DIR --install-deps --install-linters # The "all" rule is not used, because it treats compilation warnings