|
48 | 48 | pool: |
49 | 49 | vmImage: 'ubuntu-22.04' |
50 | 50 | steps: |
| 51 | + - script: | |
| 52 | + bash .ci/scripts/describe_system.sh |
| 53 | + displayName: 'System info' |
51 | 54 | - task: UsePythonVersion@0 |
52 | 55 | displayName: 'Use Python $(python.version)' |
53 | 56 | inputs: |
@@ -125,6 +128,9 @@ jobs: |
125 | 128 | sudo bash -c 'echo libintelocl.so > /etc/OpenCL/vendors/intel-cpu.icd' |
126 | 129 | sudo mv -f /opt/intel/oneapi/compiler/latest/linux/lib/oclfpga /opt/intel/oneapi/compiler/latest/linux/lib/oclfpga_ |
127 | 130 | displayName: 'apt-get' |
| 131 | + - script: | |
| 132 | + bash .ci/scripts/describe_system.sh |
| 133 | + displayName: "System info" |
128 | 134 | - script: | |
129 | 135 | conda create -q -y -n CB -c conda-forge conda=4.10 python=$(python.version) conda-build=3.21.8 conda-verify |
130 | 136 | displayName: Create Anaconda environment |
@@ -171,6 +177,11 @@ jobs: |
171 | 177 | conda install -n CB -q --override-channels -c intel dal dal-include |
172 | 178 | conda install -n CB -q --override-channels -c conda-forge mpich |
173 | 179 | displayName: Create Anaconda environment |
| 180 | + - script: | |
| 181 | + source activate CB |
| 182 | + pip install -q cpufeature |
| 183 | + bash .ci/scripts/describe_system.sh |
| 184 | + displayName: "System info" |
174 | 185 | - script: | |
175 | 186 | source activate CB |
176 | 187 | export DALROOT=$CONDA_PREFIX |
@@ -205,9 +216,15 @@ jobs: |
205 | 216 | - script: | |
206 | 217 | call activate CB |
207 | 218 | pip install --upgrade setuptools |
| 219 | + pip install cpufeature |
208 | 220 | pip install -r requirements-dev.txt |
209 | 221 | pip install -r requirements-test.txt |
210 | 222 | displayName: 'Install requirements' |
| 223 | + - script: | |
| 224 | + set PATH=C:\msys64\usr\bin;%PATH% |
| 225 | + call activate CB |
| 226 | + bash .ci/scripts/describe_system.sh |
| 227 | + displayName: 'System info' |
211 | 228 | - script: | |
212 | 229 | call activate CB |
213 | 230 | set PREFIX=%CONDA_PREFIX% |
|
0 commit comments