This is an automated email from the ASF dual-hosted git repository.
tzimanyi pushed a commit to branch apache_migration
in repository
https://gitbox.apache.org/repos/asf/incubator-kie-kogito-examples.git
The following commit(s) were added to refs/heads/apache_migration by this push:
new fc45b73f8 Update `kiegroup` repository references to `apache` (#1806)
fc45b73f8 is described below
commit fc45b73f81f5557de2cc53abb09f24c32baff2c9
Author: Tristan Radisson <[email protected]>
AuthorDate: Mon Sep 18 10:05:47 2023 +0200
Update `kiegroup` repository references to `apache` (#1806)
Co-authored-by: radtriste <[email protected]>
Co-authored-by: jstastny-cz <[email protected]>
---
.ci/environments/common/update_quarkus.sh | 2 +-
.ci/environments/update.sh | 2 +-
.ci/jenkins/Jenkinsfile | 4 ++--
.ci/jenkins/Jenkinsfile.deploy | 4 ++--
.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.pr | 4 ++--
.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.standalone | 2 +-
.ci/jenkins/Jenkinsfile.setup-branch | 6 +++---
.ci/jenkins/dsl/jobs.groovy | 4 ++--
.ci/jenkins/dsl/test.sh | 2 +-
.github/pull_request_template.md | 2 +-
.github/workflows/pr-jenkins.yml | 4 ++--
.github/workflows/pr-kogito-examples.yml | 8 ++++----
12 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/.ci/environments/common/update_quarkus.sh
b/.ci/environments/common/update_quarkus.sh
index 00b98ae80..8bb871613 100755
--- a/.ci/environments/common/update_quarkus.sh
+++ b/.ci/environments/common/update_quarkus.sh
@@ -3,7 +3,7 @@ set -euo pipefail
mvn_cmd="mvn ${BUILD_MVN_OPTS:-} ${BUILD_MVN_OPTS_QUARKUS_UPDATE:-}"
-source <(curl -s
https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/dsl/seed/scripts/install_quarkus.sh)
+source <(curl -s
https://raw.githubusercontent.com/apache/incubator-kie-kogito-pipelines/main/dsl/seed/scripts/install_quarkus.sh)
echo "Update project with Quarkus version ${QUARKUS_VERSION}"
diff --git a/.ci/environments/update.sh b/.ci/environments/update.sh
index 80abdd711..5c8416d88 100755
--- a/.ci/environments/update.sh
+++ b/.ci/environments/update.sh
@@ -44,4 +44,4 @@ if [ -f "${env_path}/after.sh" ]; then
fi
# Download `setup_integration_branch` script and execute
-curl -s
https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/dsl/seed/scripts/setup_integration_branch.sh
| bash
\ No newline at end of file
+curl -s
https://raw.githubusercontent.com/apache/incubator-kie-kogito-pipelines/main/dsl/seed/scripts/setup_integration_branch.sh
| bash
\ No newline at end of file
diff --git a/.ci/jenkins/Jenkinsfile b/.ci/jenkins/Jenkinsfile
index 909c7996b..f021522c8 100644
--- a/.ci/jenkins/Jenkinsfile
+++ b/.ci/jenkins/Jenkinsfile
@@ -11,7 +11,7 @@ pipeline {
timeout(time: 360, unit: 'MINUTES')
}
environment {
- BUILDCHAIN_PROJECT = 'kiegroup/kogito-examples'
+ BUILDCHAIN_PROJECT = 'apache/incubator-kie-kogito-examples'
KOGITO_EXAMPLES_BUILD_MVN_OPTS = '-Dvalidate-formatting'
}
@@ -21,7 +21,7 @@ pipeline {
script {
// load `pr_check.groovy` file from kogito-pipelines:main
dir('kogito-pipelines') {
-
checkout(githubscm.resolveRepository('kogito-pipelines', 'kiegroup',
'apache_migration', false, 'kie-ci')) // TODO to change back to kiegroup:main
+
checkout(githubscm.resolveRepository('incubator-kie-kogito-pipelines',
'apache', 'main', false, 'ASF_Cloudbees_Jenkins_ci-builds'))
pr_check_script = load 'dsl/scripts/pr_check.groovy'
}
}
diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy
index b2810ad02..172a08172 100644
--- a/.ci/jenkins/Jenkinsfile.deploy
+++ b/.ci/jenkins/Jenkinsfile.deploy
@@ -248,7 +248,7 @@ void commitAndCreatePR() {
prBody += '\nPlease review and merge.'
}
// Not using githubscm.commitChanges() because globbing won't work.
- // See:
https://github.com/kiegroup/kogito-runtimes/pull/570#discussion_r449268738
+ // See:
https://github.com/apache/incubator-kie-kogito-runtimes/pull/570#discussion_r449268738
addNotIgnoredPoms()
sh "git commit -m '${commitMsg}'"
githubscm.pushObject('origin', getPRBranch(), getGitAuthorCredsID())
@@ -264,7 +264,7 @@ boolean shouldStageArtifacts() {
}
boolean shouldDeployToRepository() {
- return env.MAVEN_DEPLOY_REPOSITORY && env.MAVEN_REPO_CREDS_ID &&
getGitAuthor() == 'kiegroup'
+ return env.MAVEN_DEPLOY_REPOSITORY && env.MAVEN_REPO_CREDS_ID &&
getGitAuthor() == 'apache'
}
boolean isRelease() {
diff --git a/.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.pr
b/.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.pr
index d67a569bb..d794139f2 100644
--- a/.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.pr
+++ b/.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.pr
@@ -37,9 +37,9 @@ pipeline {
stage('Build upstream projects') {
steps {
script {
- [ 'drools', 'kogito-runtimes', 'kogito-apps' ].each {
project ->
+ [ 'incubator-kie-drools', 'incubator-kie-kogito-runtimes',
'incubator-kie-kogito-apps' ].each { project ->
dir(project) {
- githubscm.checkoutIfExists(project, changeAuthor,
changeBranch, 'kiegroup', changeTarget, true)
+ githubscm.checkoutIfExists(project, changeAuthor,
changeBranch, 'apache', changeTarget, true)
sh '.ci/environments/update.sh quarkus-3'
getMavenCommand().withProperty('quickly').run('clean install')
}
diff --git a/.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.standalone
b/.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.standalone
index 0e7fbe79f..81bfac262 100644
--- a/.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.standalone
+++ b/.ci/jenkins/Jenkinsfile.quarkus-3.rewrite.standalone
@@ -55,7 +55,7 @@ pipeline {
stage('Build upstream projects') {
steps {
script {
- [ 'drools', 'kogito-runtimes', 'kogito-apps' ].each {
project ->
+ [ 'incubator-kie-drools', 'incubator-kie-kogito-runtimes',
'incubator-kie-kogito-apps' ].each { project ->
dir(project) {
githubscm.checkoutIfExists(project,
getGitAuthor(), getBuildBranch(), getBaseAuthor(), getBaseBranch(), true)
sh '.ci/environments/update.sh quarkus-3'
diff --git a/.ci/jenkins/Jenkinsfile.setup-branch
b/.ci/jenkins/Jenkinsfile.setup-branch
index 3b3e2f774..7d22ace90 100644
--- a/.ci/jenkins/Jenkinsfile.setup-branch
+++ b/.ci/jenkins/Jenkinsfile.setup-branch
@@ -5,9 +5,9 @@ import org.kie.jenkins.MavenCommand
examplesHelper = null
-droolsRepo = 'drools'
-kogitoRuntimesRepo = 'kogito-runtimes'
-kogitoAppsRepo = 'kogito-apps'
+droolsRepo = 'incubator-kie-drools'
+kogitoRuntimesRepo = 'incubator-kie-kogito-runtimes'
+kogitoAppsRepo = 'incubator-kie-kogito-apps'
pipeline {
agent {
diff --git a/.ci/jenkins/dsl/jobs.groovy b/.ci/jenkins/dsl/jobs.groovy
index a2bc36f9b..edcad9cfe 100644
--- a/.ci/jenkins/dsl/jobs.groovy
+++ b/.ci/jenkins/dsl/jobs.groovy
@@ -2,10 +2,10 @@
* This file is describing all the Jenkins jobs in the DSL format (see
https://plugins.jenkins.io/job-dsl/)
* needed by the Kogito pipelines.
*
-* The main part of Jenkins job generation is defined into the
https://github.com/kiegroup/kogito-pipelines repository.
+* The main part of Jenkins job generation is defined into the
https://github.com/apache/incubator-kie-kogito-pipelines repository.
*
* This file is making use of shared libraries defined in
-*
https://github.com/kiegroup/kogito-pipelines/tree/main/dsl/seed/src/main/groovy/org/kie/jenkins/jobdsl.
+*
https://github.com/apache/incubator-kie-kogito-pipelines/tree/main/dsl/seed/src/main/groovy/org/kie/jenkins/jobdsl.
*/
import org.kie.jenkins.jobdsl.model.JenkinsFolder
diff --git a/.ci/jenkins/dsl/test.sh b/.ci/jenkins/dsl/test.sh
index ad8af34ac..2d518eb9f 100755
--- a/.ci/jenkins/dsl/test.sh
+++ b/.ci/jenkins/dsl/test.sh
@@ -1,6 +1,6 @@
#!/bin/bash -e
file=$(mktemp)
# For more usage of the script, use ./test.sh -h
-curl -o ${file}
https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/dsl/seed/scripts/seed_test.sh
+curl -o ${file}
https://raw.githubusercontent.com/apache/incubator-kie-kogito-pipelines/main/dsl/seed/scripts/seed_test.sh
chmod u+x ${file}
${file} $@
\ No newline at end of file
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index f9ff7a180..e3ac70c34 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -4,7 +4,7 @@ Please make sure that your PR meets the following requirements:
**WARNING! Please make sure you are opening your PR against `main` branch!**
-- [ ] You have read the [contributors
guide](https://github.com/kiegroup/kogito-runtimes#contributing-to-kogito)
+- [ ] You have read the [contributors
guide](https://github.com/apache/incubator-kie-kogito-runtimes#contributing-to-kogito)
- [ ] Pull Request title is properly formatted: `KOGITO-XYZ Subject`
- [ ] Pull Request title contains the target branch if not targeting main:
`[0.9.x] KOGITO-XYZ Subject`
- [ ] Pull Request contains link to the JIRA issue
diff --git a/.github/workflows/pr-jenkins.yml b/.github/workflows/pr-jenkins.yml
index f0ca27557..591c1d79a 100644
--- a/.github/workflows/pr-jenkins.yml
+++ b/.github/workflows/pr-jenkins.yml
@@ -18,6 +18,6 @@ jobs:
- name: DSL tests
uses: kiegroup/kie-ci/.ci/actions/dsl-tests@main
with:
- main-config-file-repo: kiegroup/kogito-pipelines
+ main-config-file-repo: apache/incubator-kie-kogito-pipelines
main-config-file-path: .ci/jenkins/config/main.yaml
- branch-config-file-repo: kiegroup/kogito-pipelines
+ branch-config-file-repo: apache/incubator-kie-kogito-pipelines
diff --git a/.github/workflows/pr-kogito-examples.yml
b/.github/workflows/pr-kogito-examples.yml
index 1c19c8f5d..a896e662d 100644
--- a/.github/workflows/pr-kogito-examples.yml
+++ b/.github/workflows/pr-kogito-examples.yml
@@ -26,13 +26,13 @@ jobs:
maven-version: ['3.8.7']
include:
- job_name: kogito-quarkus-examples
- repository: kogito-examples
+ repository: incubator-kie-kogito-examples
env_KOGITO_EXAMPLES_SUBFOLDER_POM: kogito-quarkus-examples/
- job_name: kogito-springboot-examples
- repository: kogito-examples
+ repository: incubator-kie-kogito-examples
env_KOGITO_EXAMPLES_SUBFOLDER_POM: kogito-springboot-examples/
- job_name: serverless-workflow-examples
- repository: kogito-examples
+ repository: incubator-kie-kogito-examples
env_KOGITO_EXAMPLES_SUBFOLDER_POM: serverless-workflow-examples/
fail-fast: false
runs-on: ${{ matrix.os }}
@@ -57,7 +57,7 @@ jobs:
with:
annotations-prefix: ${{ runner.os }}-${{ matrix.java-version }}/${{
matrix.maven-version }}
github-token: "${{ secrets.GITHUB_TOKEN }}"
- definition-file:
https://raw.githubusercontent.com/${GROUP:kiegroup}/kogito-pipelines/${BRANCH:main}/.ci/pull-request-config.yaml
+ definition-file:
https://raw.githubusercontent.com/${GROUP:apache}/incubator-kie-kogito-pipelines/${BRANCH:main}/.ci/pull-request-config.yaml
- name: Surefire Report
uses: kiegroup/kie-ci/.ci/actions/surefire-report@main
if: ${{ always() }}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]