2323
2424 - run : ./mill "integration.invalidation[watch-source-input].packaged.server.testForked" mill.integration.WatchSourceTests.sources.show
2525
26+ - uses : actions/upload-artifact@v4
27+ if : always() # always run even if the previous step fails
28+ with :
29+ path : out/**/fsNotifyWatchLog
30+ name : debug-watch-log-artifact
31+ include-hidden-files : true
32+
2633 debug-concurrent :
2734 runs-on : ubuntu-latest
2835# runs-on: windows-latest
3744
3845 - run : ./mill "integration.invalidation[watch-source-input].packaged.server.testForked"
3946
47+ - uses : actions/upload-artifact@v4
48+ if : always() # always run even if the previous step fails
49+ with :
50+ path : out/**/fsNotifyWatchLog
51+ name : debug-concurrent-watch-log-artifact
52+ include-hidden-files : true
53+
4054 debug-very-concurrent :
4155 runs-on : ubuntu-latest
4256# runs-on: windows-latest
5165
5266 - run : ./mill "integration.invalidation[__].packaged.server.testForked"
5367
68+ - uses : actions/upload-artifact@v4
69+ if : always() # always run even if the previous step fails
70+ with :
71+ path : out/**/fsNotifyWatchLog
72+ name : debug-very-concurrent-watch-log-artifact
73+ include-hidden-files : true
74+
5475 debug2 :
5576 runs-on : ubuntu-latest
5677# runs-on: windows-latest
6283
6384 - uses : sbt/setup-sbt@v1
6485
65-
6686 - run : ./mill -i "integration.invalidation[watch-source-input].packaged.fork.testForked" mill.integration.WatchSourceTests.sources.noshow
6787
88+ - uses : actions/upload-artifact@v4
89+ if : always() # always run even if the previous step fails
90+ with :
91+ path : out/**/fsNotifyWatchLog
92+ name : debug2-watch-log-artifact
93+ include-hidden-files : true
94+
95+
6896 debug2-concurrent :
6997 runs-on : ubuntu-latest
7098# runs-on: windows-latest
@@ -79,6 +107,13 @@ jobs:
79107
80108 - run : ./mill -i "integration.invalidation[watch-source-input].packaged.fork.testForked"
81109
110+ - uses : actions/upload-artifact@v4
111+ if : always() # always run even if the previous step fails
112+ with :
113+ path : out/**/fsNotifyWatchLog
114+ name : debug2-concurrent-watch-log-artifact
115+ include-hidden-files : true
116+
82117 debug2-very-concurrent :
83118 runs-on : ubuntu-latest
84119# runs-on: windows-latest
@@ -93,6 +128,12 @@ jobs:
93128
94129 - run : ./mill -i "integration.invalidation[__].packaged.fork.testForked"
95130
131+ - uses : actions/upload-artifact@v4
132+ if : always() # always run even if the previous step fails
133+ with :
134+ path : out/**/fsNotifyWatchLog
135+ name : debug2-very-concurrent-watch-log-artifact
136+ include-hidden-files : true
96137
97138#
98139#
0 commit comments