Skip to content

Commit

Permalink
Merge branch 'kiegroup:main' into kogito-8961
Browse files Browse the repository at this point in the history
  • Loading branch information
desmax74 committed May 31, 2023
2 parents 91f326f + c8ff21c commit 0e2d838
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .ci/jenkins/Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,10 @@ pipeline {
String[] versionSplit = getOperatorVersion().split("\\.")
String majorMinor = "${versionSplit[0]}.${versionSplit[1]}"
def platformCR = readYaml(file: platformCRFile)
platformCR.spec.devBaseImage = "quay.io/kogito-swf-devmode-nightly:${majorMinor}"
platformCR.spec.platform.baseImage = "quay.io/kogito-swf-builder-nightly:${majorMinor}"
platformCR.spec.devBaseImage = "quay.io/kiegroup/kogito-swf-devmode-nightly:${majorMinor}"
platformCR.spec.platform.baseImage = "quay.io/kiegroup/kogito-swf-builder-nightly:${majorMinor}"
writeYaml(file: platformCRFile, data: platformCR, overwrite: true)
sh "cat ${platformCRFile}"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jenkins-tests-PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: DSL tests
uses: kiegroup/kogito-pipelines/.ci/actions/dsl-tests@main
uses: kiegroup/kie-ci/.ci/actions/dsl-tests@main
with:
main-config-file-repo: kiegroup/kogito-pipelines
main-config-file-path: dsl/config/main.yaml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-backporting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- name: Set target branches
id: set-targets
uses: kiegroup/kogito-pipelines/.ci/actions/parse-labels@main
uses: kiegroup/kie-ci/.ci/actions/parse-labels@main
with:
labels: ${LABELS}

Expand All @@ -34,7 +34,7 @@ jobs:
REVIEWERS: ${{ toJSON(github.event.pull_request.requested_reviewers) }}
steps:
- name: Backporting
uses: kiegroup/kogito-pipelines/.ci/actions/backporting@main
uses: kiegroup/kie-ci/.ci/actions/backporting@main
with:
target-branch: ${{ matrix.target-branch }}
additional-reviewers: ${REVIEWERS}

0 comments on commit 0e2d838

Please sign in to comment.