Skip to content

Commit

Permalink
[MINOR] Disable release candidate validation by default (#11339)
Browse files Browse the repository at this point in the history
  • Loading branch information
yihua committed May 27, 2024
1 parent f80c416 commit b9ae51e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release_candidate_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ env:
jobs:
validate-release-candidate-bundles:
runs-on: ubuntu-latest
if: false
env:
HUDI_VERSION: 0.15.0
STAGING_REPO_NUM: 1135
Expand Down
2 changes: 1 addition & 1 deletion packaging/bundle-validation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions release/release_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b9ae51e

Please sign in to comment.