summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>2024-08-03 15:11:48 (GMT)
committerGitHub <noreply@github.com>2024-08-03 15:11:48 (GMT)
commit1573d90ce17f27fd30a251de897a35bf598d2655 (patch)
tree6213cc393c95301a4f6de73662a8713dd692a143
parent06eb9701a182b4720dfa8766cb41cc5a3728a8b9 (diff)
downloadcpython-1573d90ce17f27fd30a251de897a35bf598d2655.zip
cpython-1573d90ce17f27fd30a251de897a35bf598d2655.tar.gz
cpython-1573d90ce17f27fd30a251de897a35bf598d2655.tar.bz2
gh-109408: Remove ``.azure-pipelines/pr.yml`` (#122643)
This no longer does anything useful, beyond wasting Azure resources.
-rwxr-xr-x.azure-pipelines/posix-deps-apt.sh27
-rw-r--r--.azure-pipelines/posix-steps.yml20
-rw-r--r--.azure-pipelines/pr.yml11
3 files changed, 0 insertions, 58 deletions
diff --git a/.azure-pipelines/posix-deps-apt.sh b/.azure-pipelines/posix-deps-apt.sh
deleted file mode 100755
index e0f4ca5..0000000
--- a/.azure-pipelines/posix-deps-apt.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-apt-get update
-
-apt-get -yq install \
- build-essential \
- zlib1g-dev \
- libbz2-dev \
- liblzma-dev \
- libncurses5-dev \
- libreadline6-dev \
- libsqlite3-dev \
- libssl-dev \
- libgdbm-dev \
- tk-dev \
- lzma \
- lzma-dev \
- liblzma-dev \
- libffi-dev \
- uuid-dev \
- xvfb
-
-if [ ! -z "$1" ]
-then
- echo ##vso[task.prependpath]$PWD/multissl/openssl/$1
- echo ##vso[task.setvariable variable=OPENSSL_DIR]$PWD/multissl/openssl/$1
- python3 Tools/ssl/multissltests.py --steps=library --base-directory $PWD/multissl --openssl $1 --system Linux
-fi
diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml
deleted file mode 100644
index 99fb7f3..0000000
--- a/.azure-pipelines/posix-steps.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-steps:
-- checkout: self
- clean: true
- fetchDepth: 5
-
-# Work around a known issue affecting Ubuntu VMs on Pipelines
-- script: sudo setfacl -Rb /home/vsts
- displayName: 'Workaround ACL issue'
-
-- script: sudo ./.azure-pipelines/posix-deps-apt.sh $(openssl_version)
- displayName: 'Install dependencies'
-
-- script: ./configure --with-pydebug
- displayName: 'Configure CPython (debug)'
-
-- script: make -j4
- displayName: 'Build CPython'
-
-- script: make pythoninfo
- displayName: 'Display build info'
diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml
deleted file mode 100644
index 4333967..0000000
--- a/.azure-pipelines/pr.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-pr: ['main', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7']
-
-jobs:
-- job: Prebuild
- displayName: Pre-build checks
-
- pool:
- vmImage: ubuntu-22.04
-
- steps:
- - template: ./prebuild-checks.yml