Compare commits

...

1 Commits

Author SHA1 Message Date
Jean-Paul Calderone e0cc84b625
circleci hack to build the new pypy image 2020-04-15 08:24:05 -04:00
1 changed files with 53 additions and 53 deletions

View File

@ -5,70 +5,70 @@ workflows:
version: 2 version: 2
ci: ci:
jobs: jobs:
# Platforms # # Platforms
- "debian-9" # - "debian-9"
- "debian-8": # - "debian-8":
requires: # requires:
- "debian-9" # - "debian-9"
- "ubuntu-18.04" # - "ubuntu-18.04"
- "ubuntu-16.04": # - "ubuntu-16.04":
requires: # requires:
- "ubuntu-18.04" # - "ubuntu-18.04"
- "fedora-29" # - "fedora-29"
- "fedora-28": # - "fedora-28":
requires: # requires:
- "fedora-29" # - "fedora-29"
- "centos-8" # - "centos-8"
- "slackware-14.2" # - "slackware-14.2"
- "nixos-19.09" # - "nixos-19.09"
# Test against PyPy 2.7 # # Test against PyPy 2.7
- "pypy2.7-buster" # - "pypy2.7-buster"
# Other assorted tasks and configurations # # Other assorted tasks and configurations
- "lint" # - "lint"
- "pyinstaller" # - "pyinstaller"
- "deprecations" # - "deprecations"
- "c-locale" # - "c-locale"
# Any locale other than C or UTF-8. # # Any locale other than C or UTF-8.
- "another-locale" # - "another-locale"
- "integration": # - "integration":
requires: # requires:
# If the unit test suite doesn't pass, don't bother running the # # If the unit test suite doesn't pass, don't bother running the
# integration tests. # # integration tests.
- "debian-9" # - "debian-9"
# Generate the underlying data for a visualization to aid with Python 3 # # Generate the underlying data for a visualization to aid with Python 3
# porting. # # porting.
- "build-porting-depgraph" # - "build-porting-depgraph"
images: # images:
# Build the Docker images used by the ci jobs. This makes the ci jobs # # Build the Docker images used by the ci jobs. This makes the ci jobs
# faster and takes various spurious failures out of the critical path. # # faster and takes various spurious failures out of the critical path.
triggers: # triggers:
# Build once a day # # Build once a day
- schedule: # - schedule:
cron: "0 0 * * *" # cron: "0 0 * * *"
filters: # filters:
branches: # branches:
only: # only:
- "master" # - "master"
jobs: # jobs:
- "build-image-debian-8" # - "build-image-debian-8"
- "build-image-debian-9" # - "build-image-debian-9"
- "build-image-ubuntu-16.04" # - "build-image-ubuntu-16.04"
- "build-image-ubuntu-18.04" # - "build-image-ubuntu-18.04"
- "build-image-fedora-28" # - "build-image-fedora-28"
- "build-image-fedora-29" # - "build-image-fedora-29"
- "build-image-centos-8" # - "build-image-centos-8"
- "build-image-slackware-14.2" # - "build-image-slackware-14.2"
- "build-image-pypy-2.7-buster" - "build-image-pypy-2.7-buster"