https://github.com/python/cpython
Raw File
Tip revision: de54cf5be371a6f5e2e9f208c38def5f81d3ef02 authored by Pablo Galindo on 02 April 2024, 08:24:04 UTC
Python 3.11.9
Tip revision: de54cf5
posix-steps.yml
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'

- script: |
    git fetch origin
    ./python Tools/scripts/patchcheck.py --ci true
  displayName: 'Run patchcheck.py'
  condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))

back to top