Skip to content

Commit

Permalink
run selective.resolve on the original job
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Jan 27, 2025
1 parent d6edc5a commit bae00bd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/pre-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,20 @@ jobs:
- run: cat out/mill-build/methodCodeHashSignatures.json | jq '.["value"]["build_.dist.package_$native$.$anonfun$executableRaw$8(os.Path,scala.collection.immutable.Seq,java.io.OutputStream)void"]'
- run: cat out/mill-selective-execution.json | jq '.["methodCodeHashSignatures"]["build_.dist.package_$native$.$anonfun$executableRaw$8(os.Path,scala.collection.immutable.Seq,java.io.OutputStream)void"]'

- uses: actions/download-artifact@v4
with:
path: out/mill-selective-execution
name: ${{ inputs.os }}-selective-execution-artifact

- run: mv out/mill-selective-execution/mill-selective-execution.json out/mill-selective-execution.json
shell: bash

- uses: actions/[email protected]
with:
path: .
name: ${{ inputs.os }}-artifact
include-hidden-files: true

- run: ./mill -i --debug -k selective.resolve 'example.javalib.basic[1-simple].native.server.test'
- run: ./mill -i --debug -k selective.resolveTree 'example.javalib.basic[1-simple].native.server.test'
- run: ./mill -i --debug -k selective.resolveChanged 'example.javalib.basic[1-simple].native.server.test'

0 comments on commit bae00bd

Please sign in to comment.