-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|