We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4e7689 commit 9b10ad7Copy full SHA for 9b10ad7
Jenkinsfile
@@ -1,5 +1,7 @@
1
-// dev branch only: every 30 minutes at night (1:00 - 5:00)
2
-String cronSchedule = BRANCH_NAME == 'dev' ? '*/30 1-5 * * *' : ''
+// dev branch only: run every hour at 30th minute at night (1:00 - 5:00)
+// Avoid running at the same time as integration tests: uses this projects snapshots
3
+// so make sure to not run in the middle of uploading a new snapshot to avoid dependency resolution errors.
4
+String cronSchedule = BRANCH_NAME == 'dev' ? '30 1-5 * * *' : ''
5
String buildsToKeep = '500'
6
7
String gradleArgs = '--stacktrace'
0 commit comments