This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes
Date 2021-04-12.09:44:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1618220666.9.0.00170849466841.issue43811@roundup.psfhosted.org>
In-reply-to
Content
Github selects required actions based on the "name" attribute of a job. Therefore I decided to keep the default "Ubuntu" job and moved the additional OpenSSL tests to another job.

For future reference, my first approach was:

    strategy:
      fail-fast: false
      matrix:
        openssl_ver: [1.1.1k, 1.0.2u, 1.1.0l, 3.0.0-alpha14]
        include:
        - openssl_ver: 1.1.1k
          testmode: 'full'
    ...
    - name: Tests
      run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
      if: ${{ matrix.testmode == 'full' }}
    - name: SSL tests
      run: ./python Lib/test/ssltests.py
      if: ${{ matrix.testmode != 'full' }}
History
Date User Action Args
2021-04-12 09:44:26christian.heimessetrecipients: + christian.heimes
2021-04-12 09:44:26christian.heimessetmessageid: <1618220666.9.0.00170849466841.issue43811@roundup.psfhosted.org>
2021-04-12 09:44:26christian.heimeslinkissue43811 messages
2021-04-12 09:44:26christian.heimescreate