Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes to verification procedure for python client #40977

Merged
merged 1 commit into from
Jul 23, 2024
Merged
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
6 changes: 3 additions & 3 deletions dev/README_RELEASE_PYTHON_CLIENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,11 +312,11 @@ Airflow Python client supports reproducible builds, which means that the package
sources should produce binary identical packages in reproducible way. You should check if the packages can be
binary-reproduced when built from the sources.

Checkout airflow sources and build packages in dist folder (replace X.Y.Z with the version
Checkout airflow sources and build packages in dist folder (replace X.Y.Zrc1 with the version + rc candidate)
you are checking):

```shell script
VERSION=X.Y.Z
VERSION=X.Y.Zrc1
git checkout python-client-${VERSION}
export AIRFLOW_REPO_ROOT=$(pwd)
rm -rf dist/*
Expand Down Expand Up @@ -344,7 +344,7 @@ cd ..
svn update --set-depth=infinity asf-dist/dev/airflow/clients/python

# Then compare the packages
cd asf-dist/dev/airflow/clients/python/X.Y.Zrc1
cd asf-dist/dev/airflow/clients/python/${VERSION}
for i in ${AIRFLOW_REPO_ROOT}/dist/*
do
echo "Checking if $(basename $i) is the same as $i"
Expand Down