-
-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set the string flavour tag of the jar in the actions artifacts to nightly #4994
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should just have tests generate a jar named Skript-nightly
? Would remove the need for most of the changes here 🙂
Already said in Discord that if the name was Skript-nightly every reference in the Skript code and Skript test runner would need to be changed. I did try that, and it still errored for some reason because the name was Skript-nightly. So for Skript's sake, it only uses Skript.jar, and after the tests are ran, it can be named whatever, and to whatever we decide on later down the road. |
I don't think the tests should be a nightly tasks by default, those are reserved for GH Actions only (IMO we should actually only have them for the ones on the master branch, and a diff flavour for other branches). I think it'd be better to first run the skriptTest task, than |
It was that originally, but Pickle thought otherwise, so it's changed. We need to come up with an agreement. I think it's perfect at it's current state. |
I made it so both the Skript-test.jar and Skript-nightly.jar are uploaded in the artifact. It's good to include the actual jar that was used in the tests. It's Skript-test.jar because in this pull request #4979 I added JUnit dependencies inside the jar, so it's got different classes inside. Skript-nightly is a snapshot of the Skript release at that time, aka a nightly build. |
94f982c
to
e0c0d3f
Compare
Description
Set the string flavour tag of the jar in the actions artifacts to nightly as per @APickledWalrus