11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- python : ['3.10']
14
+ python : ['3.10', '3.11', '3.12' ]
15
15
steps :
16
16
- uses : actions/checkout@v3
17
17
with :
38
38
run : conda install conda-build
39
39
- name : Build conda package
40
40
run : |
41
- CHANNELS="-c conda-forge -c intel --override-channels"
41
+ CHANNELS="-c conda-forge -c https://software.repos. intel.com/python/conda --override-channels"
42
42
VERSIONS="--python ${{ matrix.python }}"
43
43
TEST="--no-test"
44
44
@@ -59,12 +59,12 @@ jobs:
59
59
60
60
strategy :
61
61
matrix :
62
- python : ['3.10']
62
+ python : ['3.10', '3.11', '3.12' ]
63
63
experimental : [false]
64
64
runner : [ubuntu-latest]
65
65
continue-on-error : ${{ matrix.experimental }}
66
66
env :
67
- CHANNELS : -c intel -c main --override-channels
67
+ CHANNELS : -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
68
68
69
69
steps :
70
70
- name : Download artifact
@@ -121,7 +121,7 @@ jobs:
121
121
122
122
strategy :
123
123
matrix :
124
- python : ['3.10']
124
+ python : ['3.10', '3.11', '3.12' ]
125
125
env :
126
126
conda-bld : C:\Miniconda\conda-bld\win-64\
127
127
steps :
@@ -147,7 +147,7 @@ jobs:
147
147
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-python-${{ matrix.python }}-
148
148
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
149
149
- name : Build conda package
150
- run : conda build --no-test --python ${{ matrix.python }} -c intel -c conda-forge --override-channels conda-recipe
150
+ run : conda build --no-test --python ${{ matrix.python }} -c conda-forge -c https://software.repos.intel.com/python/ conda --override-channels conda-recipe
151
151
- name : Upload artifact
152
152
uses : actions/upload-artifact@v3
153
153
with :
@@ -162,13 +162,13 @@ jobs:
162
162
shell : cmd /C CALL {0}
163
163
strategy :
164
164
matrix :
165
- python : ['3.10']
165
+ python : ['3.10', '3.11', '3.12' ]
166
166
experimental : [false]
167
167
runner : [windows-latest]
168
168
continue-on-error : ${{ matrix.experimental }}
169
169
env :
170
170
workdir : ' ${{ github.workspace }}'
171
- CHANNELS : -c intel -c conda-forge --override-channels
171
+ CHANNELS : -c conda-forge -c https://software.repos.intel.com/python/ conda --override-channels
172
172
173
173
steps :
174
174
- name : Download artifact
0 commit comments