Message390830
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' }} |
|
Date |
User |
Action |
Args |
2021-04-12 09:44:26 | christian.heimes | set | recipients:
+ christian.heimes |
2021-04-12 09:44:26 | christian.heimes | set | messageid: <1618220666.9.0.00170849466841.issue43811@roundup.psfhosted.org> |
2021-04-12 09:44:26 | christian.heimes | link | issue43811 messages |
2021-04-12 09:44:26 | christian.heimes | create | |
|