From 4b33dfb2835b0db1b369968d1577979b0aad0b22 Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Mon, 22 Jan 2024 16:16:22 -0300 Subject: [PATCH] Fix github CI --- .ci/jenkins/tests/setup_pipeline_env.sh | 6 +++--- .github/workflows/pr-jenkins.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/jenkins/tests/setup_pipeline_env.sh b/.ci/jenkins/tests/setup_pipeline_env.sh index 8943da04e0d..e6f471ac293 100755 --- a/.ci/jenkins/tests/setup_pipeline_env.sh +++ b/.ci/jenkins/tests/setup_pipeline_env.sh @@ -5,13 +5,13 @@ author=$1 branch=$2 if [ -z $author ]; then - author='kiegroup' + author='apache' fi if [ -z $branch ]; then branch='main' fi -git clone --single-branch --branch $branch https://github.com/${author}/jenkins-pipeline-shared-libraries.git $TEMP_DIR +git clone --single-branch --branch $branch https://github.com/${author}/incubator-kie-kogito-pipelines.git $TEMP_DIR -cd $TEMP_DIR && mvn clean install -DskipTests \ No newline at end of file +cd $TEMP_DIR/jenkins-pipeline-shared-libraries && mvn clean install -DskipTests \ No newline at end of file diff --git a/.github/workflows/pr-jenkins.yml b/.github/workflows/pr-jenkins.yml index 1955cbfdfab..e1076aedfda 100644 --- a/.github/workflows/pr-jenkins.yml +++ b/.github/workflows/pr-jenkins.yml @@ -25,8 +25,8 @@ jobs: - name: Checkout shared libraries uses: actions/checkout@v4 with: - repository: kiegroup/jenkins-pipeline-shared-libraries - path: shared-libs + repository: apache/incubator-kie-kogito-pipelines + path: jenkins-pipeline-shared-libraries - name: Set up JDK 8 uses: actions/setup-java@v3