This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch branch-0.x
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/branch-0.x by this push:
new e7ef1580643 [MINOR] Disable release candidate validation by default
(#11339)
e7ef1580643 is described below
commit e7ef15806435b7e9af421e0d71beaf43a1981987
Author: Y Ethan Guo <[email protected]>
AuthorDate: Mon May 27 09:41:30 2024 -0700
[MINOR] Disable release candidate validation by default (#11339)
---
.github/workflows/bot.yml | 1 -
.github/workflows/release_candidate_validation.yml | 1 +
packaging/bundle-validation/README.md | 2 +-
release/release_guide.md | 2 ++
4 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/bot.yml b/.github/workflows/bot.yml
index c649b502529..951eecdcc57 100644
--- a/.github/workflows/bot.yml
+++ b/.github/workflows/bot.yml
@@ -25,7 +25,6 @@ on:
concurrency:
group: ${{ github.ref }}
- cancel-in-progress: ${{ !contains(github.ref, 'master') &&
!contains(github.ref, 'branch-0.x') }}
env:
MVN_ARGS: -e -ntp -B -V -Dgpg.skip -Djacoco.skip -Pwarn-log
-Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn
-Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn
-Dmaven.wagon.httpconnectionManager.ttlSeconds=25
-Dmaven.wagon.http.retryHandler.count=5
diff --git a/.github/workflows/release_candidate_validation.yml
b/.github/workflows/release_candidate_validation.yml
index 451e3b6c8fb..fc2f02c1a81 100644
--- a/.github/workflows/release_candidate_validation.yml
+++ b/.github/workflows/release_candidate_validation.yml
@@ -19,6 +19,7 @@ env:
jobs:
validate-release-candidate-bundles:
runs-on: ubuntu-latest
+ if: false
env:
HUDI_VERSION: 0.14.1
STAGING_REPO_NUM: 1123
diff --git a/packaging/bundle-validation/README.md
b/packaging/bundle-validation/README.md
index 41a546486ce..dab142cb7d4 100644
--- a/packaging/bundle-validation/README.md
+++ b/packaging/bundle-validation/README.md
@@ -57,7 +57,7 @@ to `base/` and the image should only be used for development
only and not be pus
The bundle validation on a release candidate is specified in the Github Action
job `validate-release-candidate-bundles`
in `.github/workflows/bot.yml`. By default, this is disabled.
-To enable the bundle validation on a particular release candidate, makes the
following changes to the job by fipping the
+To enable the bundle validation on a particular release candidate, makes the
following changes to the job by flipping the
flag and adding the release candidate version and staging repo number:
```shell
diff --git a/release/release_guide.md b/release/release_guide.md
index 41a2ea95341..0539fc4dd9c 100644
--- a/release/release_guide.md
+++ b/release/release_guide.md
@@ -421,6 +421,8 @@ Set up a few environment variables to simplify Maven
commands that follow. This
```shell
./scripts/release/validate_staged_bundles.sh
orgapachehudi-<stage_repo_number> ${RELEASE_VERSION}-rc${RC_NUM} 2>&1 | tee -a
/tmp/validate_staged_bundles_output.txt
```
+ 9. Run the release candidate bundle validation in GitHub Action by
following the instruction in
+ ["Running Bundle Validation on a Release
Candidate"](packaging/bundle-validation/README.md).
## Checklist to proceed to the next step