We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There should be a profile added which downloads the latest successful version of WildFly from CI for testing the Jakarta Core Profile TCK. This would need to download the ZIP from https://ci.wildfly.org/guestAuth/repository/download/WF_Nightly/latest.lastSuccessful/wildfly-latest-SNAPSHOT.zip, unzip it, then unzip the WildFly ZIP within that. In the GitHub CI job it looks something like this:
wget https://ci.wildfly.org/guestAuth/repository/download/WF_Nightly/latest.lastSuccessful/wildfly-latest-SNAPSHOT.zip -O wildfly-download.zip unzip wildfly-download.zip rm -rfv wildfly*-src.zip wildfly-download.zip unzip wildfly-*.zip rm -rfv wildfly-*.zip JBOSS_HOME="$(readlink -m wildfly-*)"
It might be a little more work to get this working in Maven. Another option might be to just simply add a bash script to the source which does this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There should be a profile added which downloads the latest successful version of WildFly from CI for testing the Jakarta Core Profile TCK. This would need to download the ZIP from https://ci.wildfly.org/guestAuth/repository/download/WF_Nightly/latest.lastSuccessful/wildfly-latest-SNAPSHOT.zip, unzip it, then unzip the WildFly ZIP within that. In the GitHub CI job it looks something like this:
It might be a little more work to get this working in Maven. Another option might be to just simply add a bash script to the source which does this.
The text was updated successfully, but these errors were encountered: