Skip to content

Commit

Permalink
[CI] Run tests in parallel (#4533)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
jackkoenig and mergify[bot] authored Nov 27, 2024
1 parent 8ccce89 commit 892fa80
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,7 @@ jobs:
$CHISEL_FIRTOOL_PATH/firtool -version >> $GITHUB_STEP_SUMMARY
echo \`\`\` >> $GITHUB_STEP_SUMMARY
- name: Test
run: |
./mill firrtl[_].test
./mill svsim[_].test
./mill chisel[_].test
run: ./mill -j0 firrtl[_].test + svsim[_].test + chisel[_].test
- name: Binary compatibility
# TODO either make this also check the plugin or decide that we don't
# support binary compatibility for the plugin
Expand Down Expand Up @@ -181,7 +178,7 @@ jobs:
dir=$(dirname $(which firtool))
echo "CHISEL_FIRTOOL_PATH=$dir" >> "$GITHUB_ENV"
- name: Integration Tests
run: ./mill integrationTests[_].test
run: ./mill -j0 integrationTests[_].test

# Currently just a sanity check that the benchmarking flow works
benchmark:
Expand Down

0 comments on commit 892fa80

Please sign in to comment.