Skip to content

Commit

Permalink
Merge remote-tracking branch 'yesamer/kie-issues#960' into KOGITO-100…
Browse files Browse the repository at this point in the history
…42-Migrate-Dev-UI-Java-module-from-kogito-apps-to-kie-tools+960
  • Loading branch information
fantonangeli committed Feb 29, 2024
2 parents c1652ff + 3ecd13c commit 0acab29
Show file tree
Hide file tree
Showing 178 changed files with 7,155 additions and 2,403 deletions.
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ changeTarget = env.ghprbTargetBranch ?: CHANGE_TARGET

pipeline {
agent {
label 'rhel8 && !built-in'
label util.avoidFaultyNodes('rhel8 && !built-in')
}
tools {
maven 'kie-maven-3.6.3'
Expand Down
7 changes: 6 additions & 1 deletion .ci/jenkins/Jenkinsfile.ci-main
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@Library('jenkins-pipeline-shared-libraries')_

pipeline {
agent any
agent {
label util.avoidFaultyNodes()
}

options {
timeout(time: 600, unit: 'MINUTES')
Expand Down
4 changes: 4 additions & 0 deletions .ci/jenkins/Jenkinsfile.daily-dev-publish
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@Library('jenkins-pipeline-shared-libraries')_

pipeline {
agent {
docker {
image 'quay.io/kie-tools/kie-tools-ci-build:latest'
args '--shm-size=2g --privileged --group-add docker'
label util.avoidFaultyNodes()
}
}

Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.nightly
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ settingsXMLId = 'kie-tools-prod'

pipeline {
agent {
label 'kie-rhel8 && kie-mem16g && !built-in'
label util.avoidFaultyNodes('kie-rhel8 && kie-mem16g && !built-in')
}
tools {
nodejs "nodejs-16.2.0"
Expand Down
4 changes: 4 additions & 0 deletions .ci/jenkins/Jenkinsfile.release-build
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@Library('jenkins-pipeline-shared-libraries')_

pipeline {
agent {
docker {
image 'quay.io/kie-tools/kie-tools-ci-build:latest'
args '--shm-size=2g --privileged --group-add docker'
label util.avoidFaultyNodes()
}
}

Expand Down
4 changes: 4 additions & 0 deletions .ci/jenkins/Jenkinsfile.release-dry-run
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@Library('jenkins-pipeline-shared-libraries')_

pipeline {
agent {
docker {
image 'quay.io/kie-tools/kie-tools-ci-build:latest'
label util.avoidFaultyNodes()
}
}

Expand Down
4 changes: 4 additions & 0 deletions .ci/jenkins/Jenkinsfile.release-publish
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@Library('jenkins-pipeline-shared-libraries')_

pipeline {
agent {
docker {
image 'quay.io/kie-tools/kie-tools-ci-build:latest'
label util.avoidFaultyNodes()
}
}

Expand Down
Loading

0 comments on commit 0acab29

Please sign in to comment.