@@ -30,10 +30,10 @@ jobs:
30
30
strategy :
31
31
matrix :
32
32
python : ['3.8', '3.9']
33
- os : [ubuntu-latest , windows-latest]
33
+ os : [ubuntu-20.04 , windows-latest]
34
34
include :
35
35
- python : ' 3.10'
36
- os : ubuntu-latest
36
+ os : ubuntu-20.04
37
37
38
38
runs-on : ${{ matrix.os }}
39
39
63
63
activate-environment : ' build'
64
64
use-only-tar-bz2 : true
65
65
66
- - if : matrix.os == 'ubuntu-latest '
66
+ - if : matrix.os == 'ubuntu-20.04 '
67
67
name : Store conda paths as envs on Linux
68
68
run : echo "CONDA_BLD=$CONDA_PREFIX/conda-bld/linux-64/" >> $GITHUB_ENV
69
69
@@ -98,11 +98,11 @@ jobs:
98
98
path : ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
99
99
100
100
test_linux :
101
- name : Test ['ubuntu-latest ', python='${{ matrix.python }}']
101
+ name : Test ['${{ matrix.os }} ', python='${{ matrix.python }}']
102
102
103
103
needs : build
104
104
105
- runs-on : ubuntu-latest
105
+ runs-on : ${{ matrix.os }}
106
106
107
107
defaults :
108
108
run :
@@ -111,6 +111,8 @@ jobs:
111
111
strategy :
112
112
matrix :
113
113
python : ['3.8', '3.9']
114
+ os : [ubuntu-20.04, ubuntu-latest]
115
+
114
116
experimental : [false]
115
117
116
118
continue-on-error : ${{ matrix.experimental }}
@@ -383,7 +385,7 @@ jobs:
383
385
strategy :
384
386
matrix :
385
387
python : ['3.8', '3.9']
386
- os : [ubuntu-latest , windows-latest]
388
+ os : [ubuntu-20.04 , windows-latest]
387
389
388
390
runs-on : ${{ matrix.os }}
389
391
0 commit comments