Changeset 6e89713 in trunk


Ignore:
Timestamp:
2021-08-11T14:25:13Z (4 years ago)
Author:
Jean-Paul Calderone <exarkun@…>
Branches:
master
Children:
97008b7
Parents:
2bb310c (diff), 22622b5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'origin/master' into 3760.run-codechecks3

Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified .circleci/config.yml

    r2bb310c r6e89713  
    1616    jobs:
    1717      # Start with jobs testing various platforms.
    18 
    19       # Every job that pulls a Docker image from Docker Hub needs to provide
    20       # credentials for that pull operation to avoid being subjected to
    21       # unauthenticated pull limits shared across all of CircleCI.  Use this
    22       # first job to define a yaml anchor that can be used to supply a
    23       # CircleCI job context which makes Docker Hub credentials available in
    24       # the environment.
    25       #
    26       # Contexts are managed in the CircleCI web interface:
    27       #
    28       #  https://app.circleci.com/settings/organization/github/tahoe-lafs/contexts
    29       - "debian-9": &DOCKERHUB_CONTEXT
    30           context: "dockerhub-auth"
    31 
     18      - "debian-9":
     19          {}
    3220      - "debian-10":
    33           <<: *DOCKERHUB_CONTEXT
    3421          requires:
    3522            - "debian-9"
    3623
    3724      - "ubuntu-20-04":
    38           <<: *DOCKERHUB_CONTEXT
     25          {}
    3926      - "ubuntu-18-04":
    40           <<: *DOCKERHUB_CONTEXT
    4127          requires:
    4228            - "ubuntu-20-04"
    4329      - "ubuntu-16-04":
    44           <<: *DOCKERHUB_CONTEXT
    4530          requires:
    4631            - "ubuntu-20-04"
    4732
    4833      - "fedora-29":
    49           <<: *DOCKERHUB_CONTEXT
     34          {}
    5035      - "fedora-28":
    51           <<: *DOCKERHUB_CONTEXT
    5236          requires:
    5337            - "fedora-29"
    5438
    5539      - "centos-8":
    56           <<: *DOCKERHUB_CONTEXT
     40          {}
    5741
    5842      - "nixos-19-09":
    59           <<: *DOCKERHUB_CONTEXT
     43          {}
    6044
    6145      # Test against PyPy 2.7
    6246      - "pypy27-buster":
    63           <<: *DOCKERHUB_CONTEXT
     47          {}
    6448
    6549      # Just one Python 3.6 configuration while the port is in-progress.
    6650      - "python36":
    67           <<: *DOCKERHUB_CONTEXT
     51          {}
    6852
    6953      # Other assorted tasks and configurations
    7054      - "lint":
    71           <<: *DOCKERHUB_CONTEXT
     55          {}
    7256      - "pyinstaller":
    73           <<: *DOCKERHUB_CONTEXT
     57          {}
    7458      - "deprecations":
    75           <<: *DOCKERHUB_CONTEXT
     59          {}
    7660      - "c-locale":
    77           <<: *DOCKERHUB_CONTEXT
     61          {}
    7862      # Any locale other than C or UTF-8.
    7963      - "another-locale":
    80           <<: *DOCKERHUB_CONTEXT
     64          {}
    8165
    8266      - "integration":
    83           <<: *DOCKERHUB_CONTEXT
    8467          requires:
    8568            # If the unit test suite doesn't pass, don't bother running the
     
    8871
    8972      - "typechecks":
    90           <<: *DOCKERHUB_CONTEXT
    91 
     73          {}
    9274      - "docs":
    93           <<: *DOCKERHUB_CONTEXT
     75          {}
    9476
    9577  images:
     
    10688
    10789    jobs:
    108       - "build-image-debian-10":
    109           <<: *DOCKERHUB_CONTEXT
     90      # Every job that pushes a Docker image from Docker Hub needs to provide
     91      # credentials.  Use this first job to define a yaml anchor that can be
     92      # used to supply a CircleCI job context which makes Docker Hub
     93      # credentials available in the environment.
     94      #
     95      # Contexts are managed in the CircleCI web interface:
     96      #
     97      #  https://app.circleci.com/settings/organization/github/tahoe-lafs/contexts
     98      - "build-image-debian-10": &DOCKERHUB_CONTEXT
     99          context: "dockerhub-auth"
    110100      - "build-image-debian-9":
    111101          <<: *DOCKERHUB_CONTEXT
Note: See TracChangeset for help on using the changeset viewer.