Skip to content

Commit

Permalink
[551] Exclude xtable-utilities from release guide
Browse files Browse the repository at this point in the history
  • Loading branch information
vinishjail97 committed Oct 4, 2024
1 parent 56ebbc9 commit da596bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion release/release_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Set up a few environment variables to simplify Maven commands that follow. This
3. git clone [email protected]:apache/incubator-xtable.git incubator-xtable-tmp-clone && cd incubator-xtable-tmp-clone && git checkout ${RELEASE_BRANCH} && cd ..
4. tar -zxvf apache-xtable-${RELEASE_VERSION}.src.tgz
5. diff -qr apache-xtable-${RELEASE_VERSION} incubator-xtable-tmp-clone
6. Ensure the diff contains assets,demo,website and non-binary files only in incubator-xtable-tmp-clone.
6. Ensure the diff contains assets,demo,website,xtable-utilities and non-binary files only in incubator-xtable-tmp-clone.
7. cd apache-xtable-${RELEASE_VERSION} && mvn clean package -DskipTests
8. If they pass, delete the repository we got from the tar-ball
- cd ../ && rm -rf apache-xtable-${RELEASE_VERSION} && rm -rf incubator-xtable-tmp-clone
Expand Down
2 changes: 1 addition & 1 deletion release/scripts/create_source_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ rsync -a \
--exclude ".git" --exclude ".gitignore" --exclude ".gitattributes" --exclude ".travis.yml" \
--exclude ".github" --exclude "target" --exclude ".idea" --exclude "*.iml" --exclude ".DS_Store" \
--exclude "build-target" --exclude ".rubydeps" --exclude "rfc" --exclude "docker/images" \
--exclude "assets" --exclude "demo" --exclude "website" --exclude "style/IDE.png" . apache-xtable-$RELEASE_VERSION
--exclude "assets" --exclude "demo" --exclude "website" --exclude "style/IDE.png" --exclude "xtable-utilities" . apache-xtable-$RELEASE_VERSION

tar czf ${RELEASE_DIR}/apache-xtable-${RELEASE_VERSION}.src.tgz apache-xtable-$RELEASE_VERSION
gpg --armor --local-user E391B3E8179C4FD9BB8BF72002AB8E945EFD1E91 --detach-sig ${RELEASE_DIR}/apache-xtable-${RELEASE_VERSION}.src.tgz
Expand Down
2 changes: 1 addition & 1 deletion release/scripts/validate_staged_bundles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ declare -a extensions=("-javadoc.jar" "-javadoc.jar.asc" "-javadoc.jar.md5" "-ja
"-sources.jar.asc" "-sources.jar.md5" "-sources.jar.sha1" ".jar" ".jar.asc" ".jar.md5" ".jar.sha1" ".pom" ".pom.asc"
".pom.md5" ".pom.sha1")

declare -a bundles=("xtable-api" "xtable-core" "xtable-hudi-support-extensions" "xtable-hudi-support-utils" "xtable-utilities" )
declare -a bundles=("xtable-api" "xtable-core_2.12" "xtable-hudi-support-extensions_2.12" "xtable-hudi-support-utils")

NOW=$(date +%s)
TMP_DIR_FOR_BUNDLES=/tmp/${NOW}
Expand Down

0 comments on commit da596bf

Please sign in to comment.