From e250702f83661bff0ccb3eff0a3b4c0a3a0c7bff Mon Sep 17 00:00:00 2001 From: blitz-1306 Date: Thu, 1 Feb 2024 11:40:58 +0500 Subject: [PATCH] Fix ci: tweak path to solc-typed-ast dir --- .github/workflows/ci.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8d32770..65fd781 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,18 +20,19 @@ jobs: env: SOUFFLE_DEB: https://github.com/souffle-lang/souffle/releases/download/2.4.1/x86_64-ubuntu-2004-souffle-2.4.1-Linux.deb SOL_AST_COMPILER_CACHE: ${{ github.workspace }}/.compiler_cache - SOLC_TYPED_AST_REPO: ${{ github.workspace }}/../solc-typed-ast SOLC_TYPED_AST_DIR: ${{ github.workspace }}/../solc-typed-ast/src steps: - name: Checkout sol-datalog uses: actions/checkout@v4 + with: + path: sol-datalog - name: Checkout solc-typed-ast uses: actions/checkout@v4 with: repository: ConsenSys/solc-typed-ast - path: $SOLC_TYPED_AST_REPO + path: solc-typed-ast - name: Use NodeJS ${{ matrix.node-version }} uses: actions/setup-node@v4 @@ -51,9 +52,7 @@ jobs: - name: Install solc-typed-ast run: | pwd - echo $SOLC_TYPED_AST_REPO echo $SOLC_TYPED_AST_DIR - cd $SOLC_TYPED_AST_REPO pwd ls -la $SOLC_TYPED_AST_DIR npm install