From 3d6587e5186e0a25a61674f4ad9c93d6584b3e72 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Wed, 18 Dec 2024 15:16:10 -0600 Subject: [PATCH] Add CI workflow for 2024.0.x branch --- .github/workflows/ci-2024-0-x.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/ci-2024-0-x.yml diff --git a/.github/workflows/ci-2024-0-x.yml b/.github/workflows/ci-2024-0-x.yml new file mode 100644 index 000000000..e7d995a8a --- /dev/null +++ b/.github/workflows/ci-2024-0-x.yml @@ -0,0 +1,31 @@ +name: 'CI - 2024.0.x' + +on: + workflow_dispatch: + inputs: + verbose: + default: 'false' + description: 'Verbose output' + required: false + push: + paths-ignore: + - '.github/**' + - 'spring-cloud-dataflow-apps-plugin/**' + branches: + - '2024.0.x' + +jobs: + build: + uses: ./.github/workflows/common.yml + secrets: + DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} + DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} + TMC_API_TOKEN: ${{ secrets.TMC_API_TOKEN }} + GCP_CRED_JSON: ${{ secrets.GCP_CRED_JSON }} + ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} + ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} + JF_ARTIFACTORY_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} + with: + branch: '2024.0.x' + verbose: ${{ inputs.verbose == 'true' }} + mavenThreads: '0.5C'