This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push: new 9674e3bfc chore(ci): nightly quarkus native only on main branch 9674e3bfc is described below commit 9674e3bfce733f0954d2460379804f14e5081dad Author: Pasquale Congiusti <pasquale.congiu...@gmail.com> AuthorDate: Thu Jan 18 13:00:09 2024 +0100 chore(ci): nightly quarkus native only on main branch --- .github/workflows/nightly-native-test.yml | 3 ++- script/release-branch.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly-native-test.yml b/.github/workflows/nightly-native-test.yml index 5dbe81aa1..f0012869f 100644 --- a/.github/workflows/nightly-native-test.yml +++ b/.github/workflows/nightly-native-test.yml @@ -30,7 +30,8 @@ jobs: strategy: fail-fast: false matrix: - ref-branch: [main, release-2.1.x, release-2.2.x] + # We let it on main only because it's too much resource consuming + ref-branch: [main] if: github.repository == 'apache/camel-k' runs-on: macos-12 diff --git a/script/release-branch.sh b/script/release-branch.sh index ab40c44c3..9168e8ec9 100755 --- a/script/release-branch.sh +++ b/script/release-branch.sh @@ -55,7 +55,8 @@ main() { echo "Swapping GH actions tasks from $oldest_release_branch to $new_release_branch" sed -i "s/$oldest_release_branch/$new_release_branch/g" $location/../.github/workflows/nightly-automatic-updates.yml - sed -i "s/$oldest_release_branch/$new_release_branch/g" $location/../.github/workflows/nightly-native-test.yml + # We're skipping from release branches because it takes too much resources + #sed -i "s/$oldest_release_branch/$new_release_branch/g" $location/../.github/workflows/nightly-native-test.yml sed -i "s/$oldest_release_branch/$new_release_branch/g" $location/../.github/workflows/nightly-release.yml if [ $DRYRUN == "true" ]