Skip to content

Commit

Permalink
Fix if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Apr 22, 2024
1 parent ee1a0fe commit 11ed86b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_IP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ jobs:
if: ${{ matrix.tests.tag == 'GL' }}
uses: ./.github/actions/setup-openlane-nix
- name: Clone IP
if: ! ${{ inputs.is_ip }}
if: ${{ !inputs.is_ip }}
shell: bash
run: git clone ${{ inputs.url }} /home/runner/work/${{ inputs.name }}
- name: Check out repository code
uses: actions/checkout@v4
- name: Copy EF_UVM to verify/uvm-python (workaround)
if: ! ${{ inputs.is_ip }}
if: ${{ !inputs.is_ip }}
shell: bash
run: cp -r $(pwd) ${{ env.WORKING_DIRECTORY }}
- name: Install EF_UVM to verify/uvm-python
Expand Down

0 comments on commit 11ed86b

Please sign in to comment.