Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Dec 13, 2024
1 parent 40e41b4 commit fec949e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/post-build-selective.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ jobs:
log-accepted-android-sdk-licenses: false

- run: ./mill -i -k selective.resolve ${{ inputs.millargs }}
if: github.event_name == 'pull_request'
if: (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-all-tests'))

- run: ./mill -i -k selective.run ${{ inputs.millargs }}
if: github.event_name == 'pull_request'
if: (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-all-tests'))

- run: ./mill -i -k ${{ inputs.millargs }}
if: github.event_name != 'pull_request'
if: !(github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-all-tests'))

- run: 'taskkill -f -im java* && rm -rf out/mill-server/*'
if: startsWith(inputs.os, 'windows')
Expand Down

0 comments on commit fec949e

Please sign in to comment.