Skip to content

Commit 2d56d0a

Browse files
committed
toolchain FFTW fixes
1 parent 6bc26be commit 2d56d0a

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/cleanliness.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
path: master
4040

4141
- name: Setup Ubuntu
42+
env:
43+
MFC_FFTW: "OFF" # disabling internal FFTW
44+
4245
run: |
4346
sudo apt update -y
4447
sudo apt install -y tar wget make cmake gcc g++ python3 python3-dev "openmpi-*" libopenmpi-dev libfftw3-dev

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,17 @@ jobs:
5959
6060
- name: Setup Ubuntu
6161
if: matrix.os == 'ubuntu' && matrix.intel == false
62+
env:
63+
MFC_FFTW: "OFF" # disabling internal FFTW
6264
run: |
6365
sudo apt update -y
6466
sudo apt install -y cmake gcc g++ python3 python3-dev hdf5-tools \
6567
libfftw3-dev libhdf5-dev openmpi-bin libopenmpi-dev
6668
6769
- name: Setup Ubuntu (Intel)
6870
if: matrix.os == 'ubuntu' && matrix.intel == true
71+
env:
72+
MFC_FFTW: "OFF" # disabling internal FFTW
6973
run: |
7074
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
7175
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB

0 commit comments

Comments
 (0)