Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady committed Sep 30, 2024
1 parent 26c2dd9 commit 393188b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/run_IP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,14 @@ jobs:
if: ${{ !inputs.is-ip }}
run: git clone ${{ inputs.url }} ${{ env.IP_PATH }}
- name: Install ip dependencies
if: ${{ exists('ip/dependencies.json') }}
run: |
pip install ipmgr
ipm install-dep
if [ -f ip/dependencies.json ]; then
pip install ipmgr
ipm install-deps
else
echo "dependencies.json file not found, skipping install."
fi
- name: Install EF_UVM (EF_UVM)
if: ${{ !inputs.is-ip }}
uses: actions/checkout@v4
Expand Down

0 comments on commit 393188b

Please sign in to comment.