File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6060 - name : Build conda package
6161 run : |
6262 # use bootstrap channel to pull NumPy linked with OpenBLAS
63- CHANNELS="-c conda-forge --override-channels"
64- VERSIONS="--python ${{ matrix.python }} --numpy 2.0"
65- TEST="--no-test"
66- conda build \
67- "$TEST" \
68- "$VERSIONS" \
69- "$CHANNELS" \
70- conda-recipe
63+ conda build --no-test --python ${{ matrix.python }} --numpy 2.0 -c conda-forge --override-channels conda-recipe
7164 - name : Upload artifact
7265 uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7366 with :
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ jobs:
2626
2727 - name : Add Intel repository
2828 run : |
29- wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
30- cat GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
31- rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
32- echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
29+ wget -q0- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB \
30+ | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
31+ echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" \
32+ | sudo tee /etc/apt/sources.list.d/oneAPI.list
3333 sudo apt update
3434
3535 - name : Install latest Intel OneAPI
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ jobs:
2424 - name : Add Intel repository
2525 if : ${{ !github.event.pull_request || github.event.action != 'closed' }}
2626 run : |
27- wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
28- cat GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
29- rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
30- echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
27+ wget -q0- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB \
28+ | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
29+ echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" \
30+ | sudo tee /etc/apt/sources.list.d/oneAPI.list
3131 sudo apt update
3232 - name : Install Intel OneAPI
3333 if : ${{ !github.event.pull_request || github.event.action != 'closed' }}
You can’t perform that action at this time.
0 commit comments