@@ -242,44 +242,48 @@ jobs:
242242 run : cmake --build build --target pytest
243243
244244
245- # Testing CentOS 8 + PGI compilers
246- centos-nvhpc8 :
247- runs-on : ubuntu-latest
248- name : " 🐍 3 • CentOS8 / PGI 20.7 • x64"
249- container : centos:8
250-
251- steps :
252- - uses : actions/checkout@v2
253-
254- - name : Add Python 3 and a few requirements
255- run : yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
256-
257- - name : Install CMake with pip
258- run : |
259- python3 -m pip install --upgrade pip
260- python3 -m pip install cmake --prefer-binary
261-
262- - name : Install NVidia HPC SDK
263- run : yum -y install https://developer.download.nvidia.com/hpc-sdk/nvhpc-20-7-20.7-1.x86_64.rpm https://developer.download.nvidia.com/hpc-sdk/nvhpc-2020-20.7-1.x86_64.rpm
264-
265- - name : Configure
266- shell : bash
267- run : |
268- source /etc/profile.d/modules.sh
269- module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/20.7
270- cmake -S . -B build -DDOWNLOAD_CATCH=ON -DCMAKE_CXX_STANDARD=14 -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
271-
272- - name : Build
273- run : cmake --build build -j 2 --verbose
274-
275- - name : Python tests
276- run : cmake --build build --target pytest
277-
278- - name : C++ tests
279- run : cmake --build build --target cpptest
280-
281- - name : Interface test
282- run : cmake --build build --target test_cmake_build
245+ # TODO: Internal compiler error - report to NVidia
246+ # # Testing CentOS 8 + PGI compilers
247+ # centos-nvhpc8:
248+ # runs-on: ubuntu-latest
249+ # name: "🐍 3 • CentOS8 / PGI 20.11 • x64"
250+ # container: centos:8
251+ #
252+ # steps:
253+ # - uses: actions/checkout@v2
254+ #
255+ # - name: Add Python 3 and a few requirements
256+ # run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
257+ #
258+ # - name: Install CMake with pip
259+ # run: |
260+ # python3 -m pip install --upgrade pip
261+ # python3 -m pip install cmake --prefer-binary
262+ #
263+ # - name: Install NVidia HPC SDK
264+ # run: >
265+ # yum -y install
266+ # https://developer.download.nvidia.com/hpc-sdk/20.11/nvhpc-20-11-20.11-1.x86_64.rpm
267+ # https://developer.download.nvidia.com/hpc-sdk/20.11/nvhpc-2020-20.11-1.x86_64.rpm
268+ #
269+ # - name: Configure
270+ # shell: bash
271+ # run: |
272+ # source /etc/profile.d/modules.sh
273+ # module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/20.11
274+ # cmake -S . -B build -DDOWNLOAD_CATCH=ON -DCMAKE_CXX_STANDARD=14 -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
275+ #
276+ # - name: Build
277+ # run: cmake --build build -j 2 --verbose
278+ #
279+ # - name: Python tests
280+ # run: cmake --build build --target pytest
281+ #
282+ # - name: C++ tests
283+ # run: cmake --build build --target cpptest
284+ #
285+ # - name: Interface test
286+ # run: cmake --build build --target test_cmake_build
283287
284288
285289 # Testing on CentOS 7 + PGI compilers, which seems to require more workarounds
0 commit comments