leborchuk commented on code in PR #1522:
URL: https://github.com/apache/cloudberry/pull/1522#discussion_r2673601258
##########
src/test/binary_swap/sql/upgrading_compatibility/create_table.sql:
##########
@@ -0,0 +1,48 @@
+DROP TABLE IF EXISTS sales_heap;
+CREATE TABLE IF NOT EXISTS sales_heap
+(
+ product_id INT,
+ is_audited BOOLEAN DEFAULT FALSE,
+ quantity SMALLINT,
+ total_sales BIGINT,
+ unit_price REAL,
+ discount DOUBLE PRECISION,
+ description TEXT,
+ sale_date TIMESTAMP,
+ order_date DATE,
+ status CHAR(10),
+ customer_name VARCHAR(20),
+ price DECIMAL(20, 10)
+) DISTRIBUTED BY (product_id);
+
+---
+
+DROP TABLE IF EXISTS sales_partition_heap;
+CREATE TABLE IF NOT EXISTS sales_partition_heap
+(
+ product_id INT,
+ is_audited BOOLEAN DEFAULT FALSE,
+ quantity SMALLINT,
+ total_sales BIGINT,
+ unit_price REAL,
+ discount DOUBLE PRECISION,
+ description TEXT,
+ sale_date TIMESTAMP,
+ order_date DATE,
+ status CHAR(10),
+ customer_name VARCHAR(20),
+ price DECIMAL(20, 10)
+) DISTRIBUTED BY (product_id)
+PARTITION BY LIST (status);
+
+CREATE TABLE sales_partition_heap_part1
+PARTITION OF sales_partition_heap
+FOR VALUES IN ('Cancelled');
+
+CREATE TABLE sales_partition_heap_part2
+PARTITION OF sales_partition_heap
+FOR VALUES IN ('Closed');
+
+CREATE TABLE sales_partition_heap_part3
+PARTITION OF sales_partition_heap
+FOR VALUES IN ('Processing');
Review Comment:
Should we also check if AO/AOCO tables work as expected?
##########
.github/workflows/binary-swap-check.yml:
##########
@@ -0,0 +1,675 @@
+# --------------------------------------------------------------------
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed
+# with this work for additional information regarding copyright
+# ownership. The ASF licenses this file to You under the Apache
+# License, Version 2.0 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of the
+# License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
+#
+# --------------------------------------------------------------------
+# GitHub Actions Workflow: Apache Cloudberry Binary Swap Compatibility Check
+# --------------------------------------------------------------------
+#
+# This workflow detects binary/catalog incompatibilities by comparing the
+# current PR/push code against the latest release tag.
+#
+# Workflow:
+# 1. Resolve baseline: Find the latest release tag from REL_2_STABLE
+# 2. Build baseline: Build RPM from the baseline tag (parallel)
+# 3. Build current: Build RPM from current PR/push code (parallel)
+# 4. Binary swap test: Install baseline, create cluster, swap to current,
+# verify data integrity
+#
+# Triggers:
+# - Pull requests to `REL_2_STABLE`
+# - Push to `REL_2_STABLE`
+# - Manual workflow dispatch
+#
+# --------------------------------------------------------------------
+
+name: Binary Swap Compatibility Check
+
+on:
+ push:
+ branches: [REL_2_STABLE]
+ pull_request:
+ branches: [REL_2_STABLE]
+ types: [opened, synchronize, reopened]
+ workflow_dispatch:
+ inputs:
+ baseline_ref:
+ description: 'Baseline ref to compare against (leave empty for
auto-detect latest tag)'
+ required: false
+ default: ''
+ type: string
+
+concurrency:
+ group: binary-swap-${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
+permissions:
+ contents: read
+ packages: read
+ actions: read
+
+env:
+ LOG_RETENTION_DAYS: 7
+ CBDB_INSTALL_DIR: /usr/local/cloudberry-db
+ BASELINE_INSTALL_DIR: /usr/local/cloudberry-db-baseline
+ CURRENT_INSTALL_DIR: /usr/local/cloudberry-db-current
+
+jobs:
+
+ ## ======================================================================
+ ## Job: resolve-baseline
+ ## ======================================================================
+
+ resolve-baseline:
+ name: Resolve Baseline Version
+ runs-on: ubuntu-22.04
+ outputs:
+ baseline_ref: ${{ steps.resolve.outputs.baseline_ref }}
+ baseline_version: ${{ steps.resolve.outputs.baseline_version }}
+ steps:
+ - name: Checkout (for git ls-remote)
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 1
+
+ - name: Resolve latest release tag
+ id: resolve
+ run: |
+ set -eo pipefail
+
+ # Use manual input if provided
+ if [[ -n "${{ github.event.inputs.baseline_ref }}" ]]; then
+ echo "Using manually specified baseline: ${{
github.event.inputs.baseline_ref }}"
+ echo "baseline_ref=${{ github.event.inputs.baseline_ref }}" >>
"$GITHUB_OUTPUT"
+ echo "baseline_version=${{ github.event.inputs.baseline_ref }}" >>
"$GITHUB_OUTPUT"
+ exit 0
+ fi
+
+ # Find the latest release tag
+ # Tag format: X.Y.Z-incubating (e.g., 2.0.0-incubating,
2.1.0-incubating)
+ # Exclude RC versions: X.Y.Z-incubating-rcN
+ echo "Finding latest release tag..."
+
+ # Get all tags matching the incubating pattern, sort by version,
filter out RC versions
+ TAG_INFO=$(git ls-remote --tags --refs origin '*-incubating'
2>/dev/null \
+ | grep -v '\-rc[0-9]*$' \
+ | sort -t'/' -k3 -V \
+ | tail -1 || echo "")
+
+ if [[ -z "$TAG_INFO" ]]; then
+ echo "::error::No release tags found matching pattern
'*-incubating' (excluding RC versions)"
+ echo "::error::Expected format: X.Y.Z-incubating (e.g.,
2.0.0-incubating)"
+ exit 1
+ fi
+
+ BASELINE_REF=$(echo "$TAG_INFO" | awk '{print $1}')
+ BASELINE_VERSION=$(echo "$TAG_INFO" | awk '{print $2}' | sed
's|refs/tags/||')
+
+ echo "Found baseline: ${BASELINE_VERSION} (${BASELINE_REF})"
+ echo "baseline_ref=${BASELINE_REF}" >> "$GITHUB_OUTPUT"
+ echo "baseline_version=${BASELINE_VERSION}" >> "$GITHUB_OUTPUT"
+
+ ## ======================================================================
+ ## Job: build-baseline
+ ## ======================================================================
+
+ build-baseline:
+ name: Build Baseline RPM
+ needs: [resolve-baseline]
+ runs-on: ubuntu-22.04
+ timeout-minutes: 120
+
+ container:
+ image: apache/incubator-cloudberry:cbdb-build-rocky9-latest
+ options: >-
+ --user root
+ -h cdw
+ -v /usr/share:/host_usr_share
+ -v /usr/local:/host_usr_local
+ -v /opt:/host_opt
+
+ steps:
+ - name: Free Disk Space
+ run: |
+ echo "=== Disk space before cleanup ==="
+ df -h /
+ rm -rf /host_opt/hostedtoolcache || true
+ rm -rf /host_usr_local/lib/android || true
+ rm -rf /host_usr_share/dotnet || true
+ rm -rf /host_opt/ghc || true
+ rm -rf /host_usr_local/.ghcup || true
+ rm -rf /host_usr_share/swift || true
+ rm -rf /host_usr_local/share/powershell || true
+ rm -rf /host_usr_local/share/chromium || true
+ rm -rf /host_usr_share/miniconda || true
+ rm -rf /host_opt/az || true
+ rm -rf /host_usr_share/sbt || true
+ echo "=== Disk space after cleanup ==="
+ df -h /
+
+ - name: Checkout Baseline Code
+ uses: actions/checkout@v4
+ with:
+ ref: ${{ needs.resolve-baseline.outputs.baseline_version }}
+ fetch-depth: 1
+ submodules: recursive
+
+ - name: Checkout Build Tools
+ uses: actions/checkout@v4
+ with:
+ ref: main
+ path: build_tools
+ sparse-checkout: |
+ devops
+ fetch-depth: 1
+
+ - name: Inject Build Tools
+ run: |
+ # Copy devops scripts to baseline source if they don't exist
+ if [ ! -d "devops" ]; then
+ echo "Injecting devops scripts from main branch..."
+ cp -r build_tools/devops .
+ fi
+
+ - name: Environment Initialization
+ run: |
+ set -eo pipefail
+ if ! su - gpadmin -c "/tmp/init_system.sh"; then
+ echo "::error::Container initialization failed"
+ exit 1
+ fi
+ chown -R gpadmin:gpadmin .
+ chmod -R 755 .
+ rm -rf /__t/*
+ echo "SRC_DIR=${GITHUB_WORKSPACE}" >> "$GITHUB_ENV"
+
+ # Create log directory required by build scripts
+ mkdir -p "${GITHUB_WORKSPACE}/build-logs"
+ chown gpadmin:gpadmin "${GITHUB_WORKSPACE}/build-logs"
+
+ - name: Configure
+ env:
+ SRC_DIR: ${{ github.workspace }}
+ run: |
+ set -eo pipefail
+ chmod +x
"${SRC_DIR}"/devops/build/automation/cloudberry/scripts/configure-cloudberry.sh
+ time su - gpadmin -c "cd ${SRC_DIR} && SRC_DIR=${SRC_DIR}
ENABLE_DEBUG=false
${SRC_DIR}/devops/build/automation/cloudberry/scripts/configure-cloudberry.sh"
+
+ - name: Build
+ env:
+ SRC_DIR: ${{ github.workspace }}
+ run: |
+ set -eo pipefail
+ chmod +x
"${SRC_DIR}"/devops/build/automation/cloudberry/scripts/build-cloudberry.sh
+ time su - gpadmin -c "cd ${SRC_DIR} && SRC_DIR=${SRC_DIR}
${SRC_DIR}/devops/build/automation/cloudberry/scripts/build-cloudberry.sh"
+
+ - name: Run Unit Tests
+ env:
+ SRC_DIR: ${{ github.workspace }}
+ run: |
+ set -eo pipefail
+ chmod +x
"${SRC_DIR}"/devops/build/automation/cloudberry/scripts/unittest-cloudberry.sh
+ if ! time su - gpadmin -c "cd ${SRC_DIR} && SRC_DIR=${SRC_DIR}
${SRC_DIR}/devops/build/automation/cloudberry/scripts/unittest-cloudberry.sh";
then
+ echo "::error::Unittest script failed"
+ exit 1
+ fi
+
+ - name: Create RPM
+ env:
+ CBDB_VERSION: ${{ needs.resolve-baseline.outputs.baseline_version }}
+ SRC_DIR: ${{ github.workspace }}
+ run: |
+ set -eo pipefail
+ rpmdev-setuptree
+ ln -s
"${SRC_DIR}"/devops/build/packaging/rpm/apache-cloudberry-db-incubating.spec
"${HOME}"/rpmbuild/SPECS/ || true
+ cp "${SRC_DIR}"/LICENSE /usr/local/cloudberry-db || true
+
+ # Sanitize version for RPM (replace - with _)
+ SAFE_VERSION=$(echo "${CBDB_VERSION}" | tr '-' '_')
+ echo "Building RPM with Version: ${SAFE_VERSION}"
+
+ "${SRC_DIR}"/devops/build/packaging/rpm/build-rpm.sh --version
"${SAFE_VERSION}" --release "1"
+ os_version=$(grep -oP '(?<=^VERSION_ID=")[0-9]' /etc/os-release)
+
RPM_FILE="${HOME}"/rpmbuild/RPMS/x86_64/apache-cloudberry-db-incubating-"${SAFE_VERSION}"-"1".el"${os_version}".x86_64.rpm
+
+ # Verify RPM
+ echo "Verifying RPM..."
+ rpm -qip "${RPM_FILE}"
+ for binary in "bin/postgres" "bin/psql"; do
+ if ! rpm -qlp "${RPM_FILE}" | grep -q "${binary}$"; then
+ echo "::error::Critical binary '${binary}' not found in RPM"
+ exit 1
+ fi
+ done
+ sha256sum "${RPM_FILE}"
+
+ cp "${RPM_FILE}" "${GITHUB_WORKSPACE}/"
+
+ - name: Upload Baseline RPM
+ uses: actions/upload-artifact@v4
+ with:
+ name: baseline-rpm
+ retention-days: ${{ env.LOG_RETENTION_DAYS }}
+ if-no-files-found: error
+ path: |
+ *.rpm
+ !*debuginfo*.rpm
+
+ ## ======================================================================
+ ## Job: build-current
+ ## ======================================================================
+
+ build-current:
+ name: Build Current RPM
+ runs-on: ubuntu-22.04
+ timeout-minutes: 120
+
+ container:
+ image: apache/incubator-cloudberry:cbdb-build-rocky9-latest
+ options: >-
+ --user root
+ -h cdw
+ -v /usr/share:/host_usr_share
+ -v /usr/local:/host_usr_local
+ -v /opt:/host_opt
+
+ steps:
+ - name: Free Disk Space
+ run: |
+ echo "=== Disk space before cleanup ==="
+ df -h /
+ rm -rf /host_opt/hostedtoolcache || true
+ rm -rf /host_usr_local/lib/android || true
+ rm -rf /host_usr_share/dotnet || true
+ rm -rf /host_opt/ghc || true
+ rm -rf /host_usr_local/.ghcup || true
+ rm -rf /host_usr_share/swift || true
+ rm -rf /host_usr_local/share/powershell || true
+ rm -rf /host_usr_local/share/chromium || true
+ rm -rf /host_usr_share/miniconda || true
+ rm -rf /host_opt/az || true
+ rm -rf /host_usr_share/sbt || true
+ echo "=== Disk space after cleanup ==="
+ df -h /
+
+ - name: Checkout Current Code
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 1
+ submodules: recursive
+
+ - name: Checkout Build Tools
+ uses: actions/checkout@v4
+ with:
+ ref: main
+ path: build_tools
+ sparse-checkout: |
+ devops
+ fetch-depth: 1
+
+ - name: Inject Build Tools
+ run: |
+ # Copy devops scripts to current source if they don't exist
+ if [ ! -d "devops" ]; then
+ echo "Injecting devops scripts from main branch..."
+ cp -r build_tools/devops .
+ fi
+
+ - name: Environment Initialization
+ run: |
+ set -eo pipefail
+ if ! su - gpadmin -c "/tmp/init_system.sh"; then
+ echo "::error::Container initialization failed"
+ exit 1
+ fi
+ chown -R gpadmin:gpadmin .
+ chmod -R 755 .
+ rm -rf /__t/*
+ echo "SRC_DIR=${GITHUB_WORKSPACE}" >> "$GITHUB_ENV"
+
+ # Create log directory required by build scripts
+ mkdir -p "${GITHUB_WORKSPACE}/build-logs"
+ chown gpadmin:gpadmin "${GITHUB_WORKSPACE}/build-logs"
+
+ - name: Configure
+ env:
+ SRC_DIR: ${{ github.workspace }}
+ run: |
+ set -eo pipefail
+ chmod +x
"${SRC_DIR}"/devops/build/automation/cloudberry/scripts/configure-cloudberry.sh
+ time su - gpadmin -c "cd ${SRC_DIR} && SRC_DIR=${SRC_DIR}
ENABLE_DEBUG=false
${SRC_DIR}/devops/build/automation/cloudberry/scripts/configure-cloudberry.sh"
+
+ - name: Build
+ env:
+ SRC_DIR: ${{ github.workspace }}
+ run: |
+ set -eo pipefail
+ chmod +x
"${SRC_DIR}"/devops/build/automation/cloudberry/scripts/build-cloudberry.sh
+ time su - gpadmin -c "cd ${SRC_DIR} && SRC_DIR=${SRC_DIR}
${SRC_DIR}/devops/build/automation/cloudberry/scripts/build-cloudberry.sh"
+
+ - name: Run Unit Tests
+ env:
+ SRC_DIR: ${{ github.workspace }}
+ run: |
+ set -eo pipefail
+ chmod +x
"${SRC_DIR}"/devops/build/automation/cloudberry/scripts/unittest-cloudberry.sh
+ if ! time su - gpadmin -c "cd ${SRC_DIR} && SRC_DIR=${SRC_DIR}
${SRC_DIR}/devops/build/automation/cloudberry/scripts/unittest-cloudberry.sh";
then
+ echo "::error::Unittest script failed"
+ exit 1
+ fi
+
+ - name: Create RPM
+ env:
+ CBDB_VERSION: 99.0.0-current
+ SRC_DIR: ${{ github.workspace }}
+ run: |
+ set -eo pipefail
+ rpmdev-setuptree
+ ln -s
"${SRC_DIR}"/devops/build/packaging/rpm/apache-cloudberry-db-incubating.spec
"${HOME}"/rpmbuild/SPECS/ || true
+ cp "${SRC_DIR}"/LICENSE /usr/local/cloudberry-db || true
+
+ # Sanitize
+ SAFE_VERSION=$(echo "99.0.0" | tr '-' '_')
+ "${SRC_DIR}"/devops/build/packaging/rpm/build-rpm.sh --version
"${SAFE_VERSION}" --release "current"
+
+ os_version=$(grep -oP '(?<=^VERSION_ID=")[0-9]' /etc/os-release)
+
RPM_FILE="${HOME}"/rpmbuild/RPMS/x86_64/apache-cloudberry-db-incubating-"${SAFE_VERSION}"-"current".el"${os_version}".x86_64.rpm
+
+ # Verify RPM
+ echo "Verifying RPM..."
+ rpm -qip "${RPM_FILE}"
+ for binary in "bin/postgres" "bin/psql"; do
+ if ! rpm -qlp "${RPM_FILE}" | grep -q "${binary}$"; then
+ echo "::error::Critical binary '${binary}' not found in RPM"
+ exit 1
+ fi
+ done
+ sha256sum "${RPM_FILE}"
+
+ cp "${RPM_FILE}" "${SRC_DIR}/"
+
+ - name: Compile pg_regress
+ run: |
+ # Use the environment where Cloudberry was built/installed
+ if [ -f "${CBDB_INSTALL_DIR}/cloudberry-env.sh" ]; then
+ source "${CBDB_INSTALL_DIR}/cloudberry-env.sh"
+ elif [ -f "${CBDB_INSTALL_DIR}/greenplum_path.sh" ]; then
+ source "${CBDB_INSTALL_DIR}/greenplum_path.sh"
+ else
+ echo "::error::No environment script found in ${CBDB_INSTALL_DIR}"
+ exit 1
+ fi
+
+ # Compile pg_regress
+ make -C "${SRC_DIR}/src/test/regress" pg_regress
+
+ # Prepare artifact directory
+ mkdir -p "${GITHUB_WORKSPACE}/regress_bin"
+ cp "${SRC_DIR}/src/test/regress/pg_regress"
"${GITHUB_WORKSPACE}/regress_bin/"
+ # Copy any necessary shared libraries or init files if needed
+ cp "${SRC_DIR}/src/test/regress/init_file"
"${GITHUB_WORKSPACE}/regress_bin/" || true
+
+ - name: Upload pg_regress
+ uses: actions/upload-artifact@v4
+ with:
+ name: pg-regress-bin
+ retention-days: ${{ env.LOG_RETENTION_DAYS }}
+ path: ${{ github.workspace }}/regress_bin/
+
+ - name: Upload Current RPM
+ uses: actions/upload-artifact@v4
+ with:
+ name: current-rpm
+ retention-days: ${{ env.LOG_RETENTION_DAYS }}
+ if-no-files-found: error
+ path: |
+ *.rpm
+ !*debuginfo*.rpm
+
+ ## ======================================================================
+ ## Job: binary-swap-test
+ ## ======================================================================
+
+ binary-swap-test:
+ name: Binary Swap Test
+ needs: [resolve-baseline, build-baseline, build-current]
+ runs-on: ubuntu-22.04
+ timeout-minutes: 60
+
+ container:
+ image: apache/incubator-cloudberry:cbdb-build-rocky9-latest
+ options: >-
+ --privileged
+ --user root
+ --hostname cdw
+ --shm-size=2gb
+ --ulimit core=-1
+ -v /usr/share:/host_usr_share
+ -v /usr/local:/host_usr_local
+ -v /opt:/host_opt
+
+ steps:
+ - name: Free Disk Space
+ run: |
+ echo "=== Disk space before cleanup ==="
Review Comment:
Let's place all the commands below in the devops directory and reuse the
script in every place where we need to clear the host data. (Since we already
use it in build-cloudberry.yml, it can be done in a separate PR.)
##########
.github/workflows/binary-swap-check.yml:
##########
@@ -0,0 +1,675 @@
+# --------------------------------------------------------------------
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed
+# with this work for additional information regarding copyright
+# ownership. The ASF licenses this file to You under the Apache
+# License, Version 2.0 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of the
+# License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
+#
+# --------------------------------------------------------------------
+# GitHub Actions Workflow: Apache Cloudberry Binary Swap Compatibility Check
+# --------------------------------------------------------------------
+#
+# This workflow detects binary/catalog incompatibilities by comparing the
+# current PR/push code against the latest release tag.
+#
+# Workflow:
+# 1. Resolve baseline: Find the latest release tag from REL_2_STABLE
+# 2. Build baseline: Build RPM from the baseline tag (parallel)
+# 3. Build current: Build RPM from current PR/push code (parallel)
+# 4. Binary swap test: Install baseline, create cluster, swap to current,
+# verify data integrity
+#
+# Triggers:
+# - Pull requests to `REL_2_STABLE`
+# - Push to `REL_2_STABLE`
+# - Manual workflow dispatch
+#
+# --------------------------------------------------------------------
+
+name: Binary Swap Compatibility Check
+
+on:
+ push:
+ branches: [REL_2_STABLE]
+ pull_request:
+ branches: [REL_2_STABLE]
+ types: [opened, synchronize, reopened]
+ workflow_dispatch:
+ inputs:
+ baseline_ref:
+ description: 'Baseline ref to compare against (leave empty for
auto-detect latest tag)'
+ required: false
+ default: ''
+ type: string
+
+concurrency:
+ group: binary-swap-${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
+permissions:
+ contents: read
+ packages: read
+ actions: read
+
+env:
+ LOG_RETENTION_DAYS: 7
+ CBDB_INSTALL_DIR: /usr/local/cloudberry-db
+ BASELINE_INSTALL_DIR: /usr/local/cloudberry-db-baseline
+ CURRENT_INSTALL_DIR: /usr/local/cloudberry-db-current
+
+jobs:
+
+ ## ======================================================================
+ ## Job: resolve-baseline
+ ## ======================================================================
+
+ resolve-baseline:
+ name: Resolve Baseline Version
+ runs-on: ubuntu-22.04
+ outputs:
+ baseline_ref: ${{ steps.resolve.outputs.baseline_ref }}
+ baseline_version: ${{ steps.resolve.outputs.baseline_version }}
+ steps:
+ - name: Checkout (for git ls-remote)
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 1
+
+ - name: Resolve latest release tag
+ id: resolve
+ run: |
+ set -eo pipefail
+
+ # Use manual input if provided
+ if [[ -n "${{ github.event.inputs.baseline_ref }}" ]]; then
+ echo "Using manually specified baseline: ${{
github.event.inputs.baseline_ref }}"
+ echo "baseline_ref=${{ github.event.inputs.baseline_ref }}" >>
"$GITHUB_OUTPUT"
+ echo "baseline_version=${{ github.event.inputs.baseline_ref }}" >>
"$GITHUB_OUTPUT"
+ exit 0
+ fi
+
+ # Find the latest release tag
+ # Tag format: X.Y.Z-incubating (e.g., 2.0.0-incubating,
2.1.0-incubating)
+ # Exclude RC versions: X.Y.Z-incubating-rcN
+ echo "Finding latest release tag..."
+
+ # Get all tags matching the incubating pattern, sort by version,
filter out RC versions
+ TAG_INFO=$(git ls-remote --tags --refs origin '*-incubating'
2>/dev/null \
+ | grep -v '\-rc[0-9]*$' \
+ | sort -t'/' -k3 -V \
+ | tail -1 || echo "")
+
+ if [[ -z "$TAG_INFO" ]]; then
+ echo "::error::No release tags found matching pattern
'*-incubating' (excluding RC versions)"
+ echo "::error::Expected format: X.Y.Z-incubating (e.g.,
2.0.0-incubating)"
+ exit 1
+ fi
+
+ BASELINE_REF=$(echo "$TAG_INFO" | awk '{print $1}')
+ BASELINE_VERSION=$(echo "$TAG_INFO" | awk '{print $2}' | sed
's|refs/tags/||')
+
+ echo "Found baseline: ${BASELINE_VERSION} (${BASELINE_REF})"
+ echo "baseline_ref=${BASELINE_REF}" >> "$GITHUB_OUTPUT"
+ echo "baseline_version=${BASELINE_VERSION}" >> "$GITHUB_OUTPUT"
+
+ ## ======================================================================
+ ## Job: build-baseline
+ ## ======================================================================
+
+ build-baseline:
+ name: Build Baseline RPM
+ needs: [resolve-baseline]
+ runs-on: ubuntu-22.04
+ timeout-minutes: 120
+
+ container:
+ image: apache/incubator-cloudberry:cbdb-build-rocky9-latest
+ options: >-
+ --user root
+ -h cdw
+ -v /usr/share:/host_usr_share
+ -v /usr/local:/host_usr_local
+ -v /opt:/host_opt
+
+ steps:
+ - name: Free Disk Space
+ run: |
+ echo "=== Disk space before cleanup ==="
+ df -h /
+ rm -rf /host_opt/hostedtoolcache || true
+ rm -rf /host_usr_local/lib/android || true
+ rm -rf /host_usr_share/dotnet || true
+ rm -rf /host_opt/ghc || true
+ rm -rf /host_usr_local/.ghcup || true
+ rm -rf /host_usr_share/swift || true
+ rm -rf /host_usr_local/share/powershell || true
+ rm -rf /host_usr_local/share/chromium || true
+ rm -rf /host_usr_share/miniconda || true
+ rm -rf /host_opt/az || true
+ rm -rf /host_usr_share/sbt || true
+ echo "=== Disk space after cleanup ==="
+ df -h /
+
+ - name: Checkout Baseline Code
+ uses: actions/checkout@v4
+ with:
+ ref: ${{ needs.resolve-baseline.outputs.baseline_version }}
Review Comment:
Well, if it's the baseline version and has a tag. Maybe the RPM has already
been uploaded and we don't need to build it again?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]