This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 232035f7507 Remove GitHub Workflows on main branch (#14378)
232035f7507 is described below
commit 232035f7507e431056c015130dc78d12b85cea98
Author: Aurélien Pupier <[email protected]>
AuthorDate: Thu Jun 6 07:06:50 2024 +0200
Remove GitHub Workflows on main branch (#14378)
- The main, 3.x and 4.x branches are built on Apache Software Foundation
Jenkins CI.
- The build for main branch was broken for 2 months already on GitHub
Signed-off-by: Aurélien Pupier <[email protected]>
---
.github/workflows/push-build-camel-3.yml | 82 -----------------------------
.github/workflows/push-build-camel-40x.yml | 82 -----------------------------
.github/workflows/push-build-main.yml | 83 ------------------------------
3 files changed, 247 deletions(-)
diff --git a/.github/workflows/push-build-camel-3.yml
b/.github/workflows/push-build-camel-3.yml
deleted file mode 100644
index 229f29ea59a..00000000000
--- a/.github/workflows/push-build-camel-3.yml
+++ /dev/null
@@ -1,82 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements. See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-name: Reformat and Build (Camel 3.x)
-
-on:
- push:
- branches:
- - camel-3.x
- paths-ignore:
- - .github/**/*
- - README.md
- - SECURITY.md
- - Jenkinsfile
- - Jenkinsfile.*
- - NOTICE.txt
-
-permissions: {}
-jobs:
- build:
- if: github.repository == 'apache/camel'
- permissions:
- contents: write # to create branch (peter-evans/create-pull-request)
- pull-requests: write # to create a PR (peter-evans/create-pull-request)
-
- runs-on: ubuntu-latest
- strategy:
- matrix:
- java: [ '11' ]
- steps:
- - uses: actions/checkout@v4
- with:
- persist-credentials: false
- - id: install-mvnd
- uses: ./.github/actions/install-mvnd
- - name: Set up JDK ${{ matrix.java }}
- uses: actions/setup-java@v4
- with:
- distribution: 'temurin'
- java-version: ${{ matrix.java }}
- cache: 'maven'
- - name: mvn formatter and build
- run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -l build.log
$MVND_OPTS -Pformat,fastinstall -DskipTests verify
- - name: archive logs
- uses: actions/upload-artifact@v4
- if: always()
- with:
- name: build.log
- path: build.log
- - name: Create Pull Request
- uses: peter-evans/create-pull-request@v6
- with:
- base: camel-3.x
- token: ${{ secrets.GITHUB_TOKEN }}
- commit-message: "Regen for commit ${{ github.sha }}"
- committer: GitHub <[email protected]>
- author: ${{ github.actor }} <${{ github.actor
}}@users.noreply.github.com>
- signoff: true
- branch: regen_bot_3x
- title: "Generated sources regen (Camel 3)"
- body: |
- Regen bot :robot: found some uncommitted changes after running
build on :camel: `camel-3` branch.
- Please do not delete `regen_bot` branch after merge/rebase.
- labels: |
- regen
- automated pr
- camel-3
- assignees: oscerd
diff --git a/.github/workflows/push-build-camel-40x.yml
b/.github/workflows/push-build-camel-40x.yml
deleted file mode 100644
index 7e887f4470e..00000000000
--- a/.github/workflows/push-build-camel-40x.yml
+++ /dev/null
@@ -1,82 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements. See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-name: Reformat and Build (Camel 4)
-
-on:
- push:
- branches:
- - camel-4.0.x
- paths-ignore:
- - .github/**/*
- - README.md
- - SECURITY.md
- - Jenkinsfile
- - Jenkinsfile.*
- - NOTICE.txt
-
-permissions: {}
-jobs:
- build:
- if: github.repository == 'apache/camel'
- permissions:
- contents: write # to create branch (peter-evans/create-pull-request)
- pull-requests: write # to create a PR (peter-evans/create-pull-request)
-
- runs-on: ubuntu-latest
- strategy:
- matrix:
- java: [ '17' ]
- steps:
- - uses: actions/checkout@v4
- with:
- persist-credentials: false
- - id: install-mvnd
- uses: ./.github/actions/install-mvnd
- - name: Set up JDK ${{ matrix.java }}
- uses: actions/setup-java@v4
- with:
- distribution: 'temurin'
- java-version: ${{ matrix.java }}
- cache: 'maven'
- - name: mvn formatter and build
- run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -l build.log
-Dquickly package
- - name: archive logs
- uses: actions/upload-artifact@v4
- if: always()
- with:
- name: build.log
- path: build.log
- - name: Create Pull Request
- uses: peter-evans/create-pull-request@v6
- with:
- base: main
- token: ${{ secrets.GITHUB_TOKEN }}
- commit-message: "Regen for commit ${{ github.sha }}"
- committer: GitHub <[email protected]>
- author: ${{ github.actor }} <${{ github.actor
}}@users.noreply.github.com>
- signoff: true
- branch: regen_bot_40x
- title: "Generated sources regen"
- body: |
- Regen bot :robot: found some uncommitted changes after running
build on :camel: `camel-4.0.x` branch.
- Please do not delete `regen_bot` branch after merge/rebase.
- labels: |
- regen
- automated pr
- camel-4.0
- assignees: oscerd
diff --git a/.github/workflows/push-build-main.yml
b/.github/workflows/push-build-main.yml
deleted file mode 100644
index 47e4b93b2a1..00000000000
--- a/.github/workflows/push-build-main.yml
+++ /dev/null
@@ -1,83 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements. See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-name: Reformat and Build (Camel 4)
-
-on:
- push:
- branches:
- - main
- - camel-4.4.x
- paths-ignore:
- - .github/**/*
- - README.md
- - SECURITY.md
- - Jenkinsfile
- - Jenkinsfile.*
- - NOTICE.txt
-
-permissions: {}
-jobs:
- build:
- if: github.repository == 'apache/camel'
- permissions:
- contents: write # to create branch (peter-evans/create-pull-request)
- pull-requests: write # to create a PR (peter-evans/create-pull-request)
-
- runs-on: ubuntu-latest
- strategy:
- matrix:
- java: [ '17', '21' ]
- steps:
- - uses: actions/checkout@v4
- with:
- persist-credentials: false
- - id: install-mvnd
- uses: ./.github/actions/install-mvnd
- - name: Set up JDK ${{ matrix.java }}
- uses: actions/setup-java@v4
- with:
- distribution: 'temurin'
- java-version: ${{ matrix.java }}
- cache: 'maven'
- - name: mvn formatter and build
- run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -l build-${{
matrix.java }}.log -Dquickly package
- - name: archive logs
- uses: actions/upload-artifact@v4
- if: always()
- with:
- name: build.log
- path: build-${{ matrix.java }}.log
- - name: Create Pull Request
- uses: peter-evans/create-pull-request@v6
- with:
- base: main
- token: ${{ secrets.GITHUB_TOKEN }}
- commit-message: "Regen for commit ${{ github.sha }}"
- committer: GitHub <[email protected]>
- author: ${{ github.actor }} <${{ github.actor
}}@users.noreply.github.com>
- signoff: true
- branch: regen_bot
- title: "Generated sources regen"
- body: |
- Regen bot :robot: found some uncommitted changes after running
build on :camel: `main` branch.
- Please do not delete `regen_bot` branch after merge/rebase.
- labels: |
- regen
- automated pr
- camel-4
- assignees: oscerd