Skip to content

Commit

Permalink
avoid conflict with downloaded artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 14, 2024
1 parent 131a44e commit 1f1ebec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/presidecms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
matrix:
luceeVersion: [ 6.2/snapshot/jar ]
javaVersion: [ 21 ]
keySize: [ 0, 767,1535,3071,6143,12287 ]
keySize: [ 0, 767,1535,3071,6143,12287, 24575, 49151 ]
env:
luceeVersionQuery: ${{ matrix.luceeVersion }}
compile: ${{ github.event.inputs.compile }}
Expand Down
3 changes: 2 additions & 1 deletion custom/presidecms/tests/runtests.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,8 @@
if (!directoryExists( dir ))
directoryCreate( dir );
reporter = testRunner.buildReporter( "json" );
reportFile = dir & server.lucee.version & "-" & server.java.version & "-results.json";
// add getTickCount() due to https://github.com/actions/download-artifact/issues/298
reportFile = dir & server.lucee.version & "-" & server.java.version & "-#getTickCount()#-results.json";
systemOutput( "Writing testbox stats to #reportFile#", true );
report = reporter.runReport( results=result, testbox=testRunner, justReturn=true );
Expand Down

0 comments on commit 1f1ebec

Please sign in to comment.