[CI] - Snapshot Deployment
See original GitHub issueThis issue reports the status of the daily cron job that runs deploys Quarkus Snapshot artifacts to https://s01.oss.sonatype.org/content/repositories/snapshots/io/quarkus/.
Don’t close this issue manually. This issue will be closed when the build gets fixed. It will be re-opened if it fails again later. You can subscribe to be notified of the status.
- Build page: https://github.com/quarkusio/quarkus/actions?query=workflow%3A"Quarkus+Deploy+Snapshots"
To use the snapshots, add the following repository to your pom.xml
file or Gradle project:
<repository>
<id>maven-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<layout>default</layout>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
Use snapshots are your own risk. Because of the Maven resolution mechanism, they may be 24h old (even more) and in the Quarkus world, it can be 100 commits behind. If you have issues with snapshots, try to build a fresh version of Quarkus using the instructions from https://github.com/quarkusio/quarkus/blob/master/CONTRIBUTING.md
Issue Analytics
- State:
- Created 3 years ago
- Comments:220 (53 by maintainers)
Yes, this is fixed now, it was my change that caused the regression.
@geoand yes this should fix the failing gradle test.