Skip to content

Commit 1b3b291

Browse files
authored
Fix Selective Test Execution on PRs (#4205)
b26fb7c removed one of the `chmod`s that was necessary to keep the filesystem permissions consistent, this PR puts it back Tested using this PR, verified that the touched `example.cli.builtins[1-builtin-commands].local.test` test is the only one picked up by test selection (https://github.com/com-lihaoyi/mill/actions/runs/12545856782/job/34980872995?pr=4205), the rest are all skipped
1 parent b26fb7c commit 1b3b291

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/post-build-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121

2222
# Need to fix cached artifact file permissions because github actions screws it up
2323
# https://github.com/actions/upload-artifact/issues/38
24-
- run: "chmod -R +x ."
24+
- run: "chmod -R 777 ."
2525
shell: bash
2626

2727
- uses: coursier/cache-action@v6

example/cli/builtins/1-builtin-commands/build.mill

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,4 +404,4 @@ kotlinlib/web/1-hello-ktor
404404
// projects closest to what you want into the empty folder. Even though the example
405405
// project isn't going to be everything that you need, at least it'll get most of the
406406
// tedious boilerplate set up, so you can hit the group running working on the things
407-
// that are unique to your particular project.
407+
// that are unique to your particular project..

0 commit comments

Comments
 (0)