From e3132398ba4dbea8675bec808552cc9f88f30a11 Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Sun, 22 Oct 2023 21:36:26 -0700 Subject: [PATCH] [ci] Fix access to REMOTE_CHIPYARD_DIR --- .github/actions/prepare-gpu/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/prepare-gpu/action.yml b/.github/actions/prepare-gpu/action.yml index 40a7e5b8..a7d4ff38 100644 --- a/.github/actions/prepare-gpu/action.yml +++ b/.github/actions/prepare-gpu/action.yml @@ -20,7 +20,7 @@ runs: - name: Init submodules to ensure stimuli is located run: | conda activate ${{ env.conda-env-name-no-time }}-$(date --date "${{ env.workflow-timestamp }}" +%Y%m%d)-${{ inputs.toolchain }} - cd $REMOTE_CHIPYARD_DIR + cd ${{ env.REMOTE_WORK_DIR }} echo $PWD ./scripts/init-submodules-no-riscv-tools.sh --force shell: bash -leo pipefail {0}