PYTHON-4616 Remove EVG release scripts (#1776)
This commit is contained in:
parent
d91393bc83
commit
940d2c85fb
@ -1,30 +0,0 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
# Get access to testinstall.
|
||||
. .evergreen/utils.sh
|
||||
|
||||
# Create temp directory for validated files.
|
||||
rm -rf validdist
|
||||
mkdir -p validdist
|
||||
mv dist/* validdist || true
|
||||
|
||||
VERSION=${VERSION:-3.10}
|
||||
|
||||
PYTHON=/Library/Frameworks/Python.framework/Versions/$VERSION/bin/python3
|
||||
rm -rf build
|
||||
|
||||
createvirtualenv $PYTHON releasevenv
|
||||
python -m pip install build
|
||||
python -m build --wheel .
|
||||
deactivate || true
|
||||
rm -rf releasevenv
|
||||
|
||||
# Test that each wheel is installable.
|
||||
for release in dist/*; do
|
||||
testinstall $PYTHON $release
|
||||
mv $release validdist/
|
||||
done
|
||||
|
||||
mv validdist/* dist
|
||||
rm -rf validdist
|
||||
ls dist
|
||||
@ -1,42 +0,0 @@
|
||||
#!/bin/bash -ex
|
||||
cd /src
|
||||
|
||||
# Get access to testinstall.
|
||||
. .evergreen/utils.sh
|
||||
|
||||
# Create temp directory for validated files.
|
||||
rm -rf validdist
|
||||
mkdir -p validdist
|
||||
mv dist/* validdist || true
|
||||
|
||||
# Compile wheels
|
||||
for PYTHON in /opt/python/*/bin/python; do
|
||||
if [[ ! $PYTHON =~ (cp38|cp39|cp310|cp311|cp312) ]]; then
|
||||
continue
|
||||
fi
|
||||
# https://github.com/pypa/manylinux/issues/49
|
||||
rm -rf build
|
||||
$PYTHON -m pip install build
|
||||
$PYTHON -m build --wheel .
|
||||
rm -rf build
|
||||
|
||||
# Audit wheels and write manylinux tag
|
||||
for whl in dist/*.whl; do
|
||||
# Skip already built manylinux wheels.
|
||||
if [[ "$whl" != *"manylinux"* ]]; then
|
||||
auditwheel repair $whl -w dist
|
||||
rm $whl
|
||||
fi
|
||||
done
|
||||
|
||||
# Test that each wheel is installable.
|
||||
# Test without virtualenv because it's not present on manylinux containers.
|
||||
for release in dist/*; do
|
||||
testinstall $PYTHON $release "without-virtualenv"
|
||||
mv $release validdist/
|
||||
done
|
||||
done
|
||||
|
||||
mv validdist/* dist
|
||||
rm -rf validdist
|
||||
ls dist
|
||||
@ -1,50 +0,0 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
docker version
|
||||
|
||||
# Set up qemu support using the method used in docker/setup-qemu-action
|
||||
# https://github.com/docker/setup-qemu-action/blob/2b82ce82d56a2a04d2637cd93a637ae1b359c0a7/README.md?plain=1#L46
|
||||
docker run --rm --privileged tonistiigi/binfmt:latest --install all
|
||||
|
||||
# manylinux1 2021-05-05-b64d921 and manylinux2014 2021-05-05-1ac6ef3 were
|
||||
# the last releases to generate pip < 20.3 compatible wheels. After that
|
||||
# auditwheel was upgraded to v4 which produces PEP 600 manylinux_x_y wheels
|
||||
# which requires pip >= 20.3. We use the older docker image to support older
|
||||
# pip versions.
|
||||
BUILD_WITH_TAG="$1"
|
||||
if [ -n "$BUILD_WITH_TAG" ]; then
|
||||
images=(quay.io/pypa/manylinux1_x86_64:2021-05-05-b64d921 \
|
||||
quay.io/pypa/manylinux1_i686:2021-05-05-b64d921 \
|
||||
quay.io/pypa/manylinux2014_x86_64:2021-05-05-1ac6ef3 \
|
||||
quay.io/pypa/manylinux2014_i686:2021-05-05-1ac6ef3 \
|
||||
quay.io/pypa/manylinux2014_aarch64:2021-05-05-1ac6ef3 \
|
||||
quay.io/pypa/manylinux2014_ppc64le:2021-05-05-1ac6ef3 \
|
||||
quay.io/pypa/manylinux2014_s390x:2021-05-05-1ac6ef3)
|
||||
else
|
||||
images=(quay.io/pypa/manylinux1_x86_64 \
|
||||
quay.io/pypa/manylinux1_i686 \
|
||||
quay.io/pypa/manylinux2014_x86_64 \
|
||||
quay.io/pypa/manylinux2014_i686 \
|
||||
quay.io/pypa/manylinux2014_aarch64 \
|
||||
quay.io/pypa/manylinux2014_ppc64le \
|
||||
quay.io/pypa/manylinux2014_s390x)
|
||||
fi
|
||||
|
||||
for image in "${images[@]}"; do
|
||||
docker pull $image
|
||||
docker run --rm -v "`pwd`:/src" $image /src/.evergreen/build-manylinux-internal.sh
|
||||
done
|
||||
|
||||
ls dist
|
||||
|
||||
# Check for any unexpected files.
|
||||
unexpected=$(find dist \! \( -iname dist -or \
|
||||
-iname '*cp38*' -or \
|
||||
-iname '*cp39*' -or \
|
||||
-iname '*cp310*' -or \
|
||||
-iname '*cp311*' -or \
|
||||
-iname '*cp312*' \))
|
||||
if [ -n "$unexpected" ]; then
|
||||
echo "Unexpected files:" $unexpected
|
||||
exit 1
|
||||
fi
|
||||
@ -1,29 +0,0 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
# Get access to testinstall.
|
||||
. .evergreen/utils.sh
|
||||
|
||||
# Create temp directory for validated files.
|
||||
rm -rf validdist
|
||||
mkdir -p validdist
|
||||
mv dist/* validdist || true
|
||||
|
||||
for VERSION in 38 39 310 311 312; do
|
||||
_pythons=("C:/Python/Python${VERSION}/python.exe" \
|
||||
"C:/Python/32/Python${VERSION}/python.exe")
|
||||
for PYTHON in "${_pythons[@]}"; do
|
||||
rm -rf build
|
||||
$PYTHON -m pip install build
|
||||
$PYTHON -m build --wheel .
|
||||
|
||||
# Test that each wheel is installable.
|
||||
for release in dist/*; do
|
||||
testinstall $PYTHON $release
|
||||
mv $release validdist/
|
||||
done
|
||||
done
|
||||
done
|
||||
|
||||
mv validdist/* dist
|
||||
rm -rf validdist
|
||||
ls dist
|
||||
@ -786,92 +786,6 @@ functions:
|
||||
args:
|
||||
- ${DRIVERS_TOOLS}/.evergreen/atlas/teardown-atlas-cluster.sh
|
||||
|
||||
"build release":
|
||||
- command: shell.exec
|
||||
type: test
|
||||
params:
|
||||
working_dir: "src"
|
||||
script: |
|
||||
${PREPARE_SHELL}
|
||||
set -o xtrace
|
||||
VERSION=${VERSION} ENSURE_UNIVERSAL2=${ENSURE_UNIVERSAL2} .evergreen/release.sh
|
||||
|
||||
"upload release":
|
||||
- command: ec2.assume_role
|
||||
params:
|
||||
role_arn: ${assume_role_arn}
|
||||
- command: archive.targz_pack
|
||||
params:
|
||||
target: "release-files.tgz"
|
||||
source_dir: "src/dist"
|
||||
include:
|
||||
- "*"
|
||||
- command: s3.put
|
||||
params:
|
||||
aws_key: ${AWS_ACCESS_KEY_ID}
|
||||
aws_secret: ${AWS_SECRET_ACCESS_KEY}
|
||||
aws_session_token: ${AWS_SESSION_TOKEN}
|
||||
local_file: release-files.tgz
|
||||
remote_file: release/${revision}/${task_id}-${execution}-release-files.tar.gz
|
||||
bucket: ${bucket_name}
|
||||
permissions: public-read
|
||||
content_type: ${content_type|application/gzip}
|
||||
display_name: Release files
|
||||
|
||||
"download and merge releases":
|
||||
- command: ec2.assume_role
|
||||
params:
|
||||
role_arn: ${assume_role_arn}
|
||||
- command: shell.exec
|
||||
params:
|
||||
silent: true
|
||||
include_expansions_in_env: ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN"]
|
||||
script: |
|
||||
# Download all the task coverage files.
|
||||
aws s3 cp --recursive s3://${bucket_name}/release/${revision}/ release/
|
||||
- command: shell.exec
|
||||
params:
|
||||
shell: "bash"
|
||||
script: |
|
||||
${PREPARE_SHELL}
|
||||
set -o xtrace
|
||||
# Combine releases into one directory.
|
||||
ls -la release/
|
||||
mkdir releases
|
||||
# Copy old manylinux release first since we want the newer manylinux
|
||||
# wheels to override them.
|
||||
mkdir old_manylinux
|
||||
if mv release/*old_manylinux* old_manylinux; then
|
||||
for REL in old_manylinux/*; do
|
||||
tar zxvf $REL -C releases/
|
||||
done
|
||||
fi
|
||||
for REL in release/*; do
|
||||
tar zxvf $REL -C releases/
|
||||
done
|
||||
# Build source distribution.
|
||||
cd src/
|
||||
/opt/python/3.8/bin/python3 -m pip install build
|
||||
/opt/python/3.8/bin/python3 -m build --sdist .
|
||||
cp dist/* ../releases
|
||||
- command: archive.targz_pack
|
||||
params:
|
||||
target: "release-files-all.tgz"
|
||||
source_dir: "releases/"
|
||||
include:
|
||||
- "*"
|
||||
- command: s3.put
|
||||
params:
|
||||
aws_key: ${AWS_ACCESS_KEY_ID}
|
||||
aws_secret: ${AWS_SECRET_ACCESS_KEY}
|
||||
aws_session_token: ${AWS_SESSION_TOKEN}
|
||||
local_file: release-files-all.tgz
|
||||
remote_file: release-all/${revision}/${task_id}-${execution}-release-files-all.tar.gz
|
||||
bucket: ${bucket_name}
|
||||
permissions: public-read
|
||||
content_type: ${content_type|application/gzip}
|
||||
display_name: Release files all
|
||||
|
||||
"run perf tests":
|
||||
- command: shell.exec
|
||||
type: test
|
||||
@ -1116,72 +1030,6 @@ tasks:
|
||||
genhtml --version || true
|
||||
valgrind --version || true
|
||||
|
||||
- name: "release-mac"
|
||||
tags: ["release_tag"]
|
||||
run_on: macos-11
|
||||
commands:
|
||||
- func: "build release"
|
||||
vars:
|
||||
VERSION: "3.12"
|
||||
ENSURE_UNIVERSAL2: "1"
|
||||
- func: "build release"
|
||||
vars:
|
||||
VERSION: "3.11"
|
||||
ENSURE_UNIVERSAL2: "1"
|
||||
- func: "build release"
|
||||
vars:
|
||||
VERSION: "3.10"
|
||||
ENSURE_UNIVERSAL2: "1"
|
||||
- func: "build release"
|
||||
vars:
|
||||
VERSION: "3.9"
|
||||
ENSURE_UNIVERSAL2: "1"
|
||||
- func: "upload release"
|
||||
- func: "build release"
|
||||
vars:
|
||||
VERSION: "3.8"
|
||||
- func: "upload release"
|
||||
|
||||
- name: "release-windows"
|
||||
tags: ["release_tag"]
|
||||
run_on: windows-64-vsMulti-small
|
||||
commands:
|
||||
- func: "build release"
|
||||
- func: "upload release"
|
||||
|
||||
- name: "release-manylinux"
|
||||
tags: ["release_tag"]
|
||||
run_on: ubuntu2204-large
|
||||
exec_timeout_secs: 216000 # 60 minutes (manylinux task is slow).
|
||||
commands:
|
||||
- func: "build release"
|
||||
- func: "upload release"
|
||||
|
||||
- name: "release-old-manylinux"
|
||||
tags: ["release_tag"]
|
||||
run_on: ubuntu2204-large
|
||||
exec_timeout_secs: 216000 # 60 minutes (manylinux task is slow).
|
||||
commands:
|
||||
- command: shell.exec
|
||||
type: test
|
||||
params:
|
||||
working_dir: "src"
|
||||
script: |
|
||||
${PREPARE_SHELL}
|
||||
set -o xtrace
|
||||
.evergreen/build-manylinux.sh BUILD_WITH_TAG
|
||||
- func: "upload release"
|
||||
|
||||
- name: "release-combine"
|
||||
tags: ["release_tag"]
|
||||
run_on: rhel84-small
|
||||
depends_on:
|
||||
- name: "*"
|
||||
variant: ".release_tag"
|
||||
patch_optional: true
|
||||
commands:
|
||||
- func: "download and merge releases"
|
||||
|
||||
# Standard test tasks {{{
|
||||
|
||||
- name: "mockupdb"
|
||||
@ -3177,13 +3025,6 @@ buildvariants:
|
||||
tasks:
|
||||
- name: "check-import-time"
|
||||
|
||||
- name: Release
|
||||
display_name: Release
|
||||
batchtime: 20160 # 14 days
|
||||
tags: ["release_tag"]
|
||||
tasks:
|
||||
- ".release_tag"
|
||||
|
||||
- name: "perf-tests"
|
||||
display_name: "Performance Benchmark Tests"
|
||||
batchtime: 10080 # 7 days
|
||||
|
||||
@ -1,9 +0,0 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
if [ "$(uname -s)" = "Darwin" ]; then
|
||||
.evergreen/build-mac.sh
|
||||
elif [ "Windows_NT" = "$OS" ]; then # Magic variable in cygwin
|
||||
.evergreen/build-windows.sh
|
||||
else
|
||||
.evergreen/build-manylinux.sh
|
||||
fi
|
||||
Loading…
Reference in New Issue
Block a user