Skip to content

Commit

Permalink
Fix ci: tweak path to solc-typed-ast dir
Browse files Browse the repository at this point in the history
  • Loading branch information
blitz-1306 committed Feb 1, 2024
1 parent 2db88fe commit e250702
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e250702

Please sign in to comment.