Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 5 additions & 21 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ jobs:
- docker
- elm
- go
- go-close-pr
- go-security
- go-update-pr
- gradle
- hex
- maven
- npm
- npm-remove-transitive
- nuget
- pip
- pip-compile
Expand All @@ -35,6 +39,7 @@ jobs:
- submodules
- terraform
- yarn-berry
- yarn-berry-workspaces
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -63,24 +68,3 @@ jobs:

- name: Create summary
run: tail -n100 log.txt | grep -P '\d+/\d+ calls cached \(\d+%\)' >> $GITHUB_STEP_SUMMARY

# No upload at the end:
# - If a test is uncachable in some regard, the cache would grow unbound.
# - We might want to consider erroring if the cache is changed.

# Allows us to add a check requirement on allsmoke which covers all in the matrix above
allsmoke:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Smoke result
needs: smoke
steps:
- name: Echo needs
run: echo "${{ toJSON(needs) }}" # for debugging
- name: Check success
run: |
if [ "${{ needs.smoke.result }}" = "success" ]; then
exit 0
else
exit 1
fi