Skip to content

Commit

Permalink
install all at once
Browse files Browse the repository at this point in the history
  • Loading branch information
gadfort committed Sep 20, 2024
1 parent b5cc514 commit 8f980e2
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/run-designs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,35 +188,31 @@ jobs:

name: Run design
steps:
- uses: actions/[email protected]
- name: Get gallery
uses: actions/[email protected]
with:
name: ${{ needs.wheel.outputs.name }}
path: dist-gallery

- name: Install gallery
run: pip3 install dist-gallery/*.whl

- name: Get siliconcompiler
if: inputs.sc-ref != ''
uses: actions/[email protected]
with:
name: ${{ needs.package_siliconcompiler.outputs.name }}
path: dist-sc

- name: Install siliconcompiler
if: inputs.sc-ref != ''
run: pip3 install dist-sc/*.whl

- name: Get lambdapdk
if: inputs.lambdapdk-ref != ''
uses: actions/[email protected]
with:
name: ${{ needs.package_lambdapdk.outputs.name }}
path: dist-pdk

- name: Install Lambdapdk
if: inputs.lambdapdk-ref != ''
run: pip3 install dist-pdk/*.whl
- name: Install
run: |
mkdir -p dist-sc
mkdir -p dist-pdk
pip3 install dist-gallery/*.whl dist-sc/*.whl dist-pdk/*.whl
- name: Run gallery
timeout-minutes: ${{ inputs.timeout }}
Expand Down

0 comments on commit 8f980e2

Please sign in to comment.