Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ dependency-reduced-pom.xml
apache-hive-3.1.3-bin-gdp-*.tar.gz
hive_build_dist/
.devcontainer/.devpod-internal/
*.patch
8 changes: 2 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Hive Development Build and Management Tasks

## Variables
main_hive2_branch := "6si-main"
main_hive3_branch := "6si-hive3-main"

set shell := ["bash", "-c"]

# Default recipe - show help
Expand Down Expand Up @@ -91,7 +87,7 @@ clean:
# Build entire project with distribution package
build-without-tests:
echo "=== building without tests ==="
#mvn clean install -Pdist -Dtar -DskipTests=true -Dmaven.javadoc.skip=true
mvn clean install -Pdist -Dtar -DskipTests=true -Dmaven.javadoc.skip=true

# Build with tests (slower, comprehensive)
build-with-tests:
Expand All @@ -105,7 +101,7 @@ pull-main:
branch="$(git branch --show-current 2>/dev/null || true)"
commit="$(git rev-parse --short HEAD 2>/dev/null || true)"
fi
if [ -n "${branch}" ] && { [ "${branch}" = "${main_hive2_branch}" ] || [ "${branch}" = "${main_hive3_branch}" ]; }; then
if [ -n "${branch}" ] && { [ "${branch}" = "6si-main" ] || [ "${branch}" = "6si-hive3-main" ]; }; then
echo "Current branch is ${branch}, pulling latest changes..."
git pull origin "${branch}"
echo "Pull completed"
Expand Down