File tree 2 files changed +5
-16
lines changed
2 files changed +5
-16
lines changed Original file line number Diff line number Diff line change @@ -125,13 +125,6 @@ gpg --armor --output ${tarball}.asc --detach-sig ${tarball}
125
125
(cd ${distdir} && shasum -a 256 ${tarname} ) > ${tarball} .sha256
126
126
(cd ${distdir} && shasum -a 512 ${tarname} ) > ${tarball} .sha512
127
127
128
- # download python binary releases from Github Action
129
- python_distdir=${distdir} /python
130
- echo " Preparing python release artifacts"
131
- test -d ${python_distdir} || mkdir -p ${python_distdir}
132
- pushd " ${python_distdir} "
133
- python ${SOURCE_DIR} /download-python-wheels.py " ${tag} "
134
- popd
135
128
136
129
echo " Uploading to apache dist/dev to ${url} "
137
130
svn co --depth=empty https://dist.apache.org/repos/dist/dev/arrow ${SOURCE_TOP_DIR} /dev/dist
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ fetch_archive() {
72
72
73
73
verify_dir_artifact_signatures () {
74
74
# verify the signature and the checksums of each artifact
75
- find $1 -name ' *.asc' | while read sigfile; do
75
+ find . -name ' *.asc' | while read sigfile; do
76
76
artifact=${sigfile/ .asc/ }
77
77
gpg --verify $sigfile $artifact || exit 1
78
78
@@ -135,7 +135,10 @@ test_source_distribution() {
135
135
exit 1
136
136
fi
137
137
138
- pushd datafusion
138
+
139
+ # Note can't verify datafusion or datafusion-expr as they depend
140
+ # on datafusion-common which isn't published yet
141
+ pushd datafusion-common
139
142
cargo publish --dry-run
140
143
popd
141
144
}
@@ -154,13 +157,6 @@ pushd ${dist_name}
154
157
test_source_distribution
155
158
popd
156
159
157
- echo " Verifying python artifacts..."
158
- svn co $ARROW_DIST_URL /apache-arrow-datafusion-${VERSION} -rc${RC_NUMBER} /python python-artifacts
159
- pushd python-artifacts
160
- verify_dir_artifact_signatures
161
- twine check * .{whl,tar.gz}
162
- popd
163
-
164
160
TEST_SUCCESS=yes
165
161
echo ' Release candidate looks good!'
166
162
exit 0
You can’t perform that action at this time.
0 commit comments