mirror of
https://github.com/python/cpython.git
synced 2024-11-30 18:51:15 +01:00
1863302d61
Create Tools/build/ directory. Move the following scripts from Tools/scripts/ to Tools/build/: * check_extension_modules.py * deepfreeze.py * freeze_modules.py * generate_global_objects.py * generate_levenshtein_examples.py * generate_opcode_h.py * generate_re_casefix.py * generate_sre_constants.py * generate_stdlib_module_names.py * generate_token.py * parse_html5_entities.py * smelly.py * stable_abi.py * umarshal.py * update_file.py * verify_ensurepip_wheels.py Update references to these scripts.
33 lines
851 B
YAML
33 lines
851 B
YAML
name: Verify bundled pip and setuptools
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- 'Lib/ensurepip/_bundled/**'
|
|
- '.github/workflows/verify-ensurepip-wheels.yml'
|
|
- 'Tools/build/verify_ensurepip_wheels.py'
|
|
pull_request:
|
|
paths:
|
|
- 'Lib/ensurepip/_bundled/**'
|
|
- '.github/workflows/verify-ensurepip-wheels.yml'
|
|
- 'Tools/build/verify_ensurepip_wheels.py'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3'
|
|
- name: Compare checksums of bundled pip and setuptools to ones published on PyPI
|
|
run: ./Tools/build/verify_ensurepip_wheels.py
|