Skip to content

Commit c12cbb3

Browse files
committed
fix CI after linting changes
1 parent 22954af commit c12cbb3

3 files changed

Lines changed: 9 additions & 16 deletions

File tree

.github/workflows/conda-package.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,7 @@ jobs:
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:

.github/workflows/generate-coverage.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/generate-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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' }}

0 commit comments

Comments
 (0)