Skip to content

Commit

Permalink
tets
Browse files Browse the repository at this point in the history
  • Loading branch information
gadfort committed Nov 7, 2023
1 parent 23f6fa7 commit 4e7b80e
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/designs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ jobs:
run: |
echo "designs=$(cat $GITHUB_WORKSPACE/.github/workflows/config/designs.json)" >> $GITHUB_OUTPUT
docker_image:
sc_version:
name: Get SiliconCompiler tools image
runs-on: ubuntu-latest

outputs:
version: ${{ steps.sc_version.outputs.version }}

steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -41,12 +44,14 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install -e $GITHUB_WORKSPACE/.
echo "version=$(sc -version)" >> $GITHUB_ENV
echo "version=$(sc -version)" >> $GITHUB_OUTPUT
- name: Get tools image
uses: siliconcompiler/siliconcompiler/.github/workflows/docker_image.yml@main
with:
sc_version: ${{ sc_version.version }}
docker_image:
needs: sc_version
name: Get tools image
uses: siliconcompiler/siliconcompiler/.github/workflows/docker_image.yml@main
with:
sc_version: ${{ needs.sc_version.outputs.version }}

designs_test:
needs: [docker_image, designs]
Expand All @@ -71,7 +76,7 @@ jobs:
submodules: recursive

- name: Checkout SiliconCompiler
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: siliconcompiler/siliconcompiler
path: siliconcompiler
Expand Down

0 comments on commit 4e7b80e

Please sign in to comment.