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 4b07d6a commit 8145c32
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/run_IP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,6 @@ jobs:
- name: Install IP (EF_UVM)
if: ${{ !inputs.is-ip }}
run: git clone ${{ inputs.url }} ${{ env.IP_PATH }}
- name: Install ip dependencies
run: |
cd ${{ env.IP_PATH }}
ls -la ip/
if [ -f ip/dependencies.json ]; then
echo "File exists!"
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 All @@ -64,6 +52,18 @@ jobs:
if: ${{ inputs.is-ip }}
run: |
git clone https://github.com/efabless/EF_UVM.git ${{ env.EF_UVM_PATH }}
- name: Install ip dependencies
uses: actions/checkout@v4
run: |
cd ${{ env.IP_PATH }}
ls -la ip/
if [ -f ip/dependencies.json ]; then
echo "File exists!"
pip install ipmgr
ipm install-deps
else
echo "dependencies.json file not found, skipping install."
fi
- name: Set Artifact Name
id: set_artifact_name
run: |
Expand Down

0 comments on commit 8145c32

Please sign in to comment.