Skip to content

Commit 25ff074

Browse files
committed
ci: commented-out PGI 20.11, drop 20.7
1 parent bc853ff commit 25ff074

File tree

2 files changed

+44
-40
lines changed

2 files changed

+44
-40
lines changed

.github/workflows/ci.yml

Lines changed: 42 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -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

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ Supported compilers
135135
3. Microsoft Visual Studio 2015 Update 3 or newer
136136
4. Intel C++ compiler 18 or newer
137137
(`possible issue <https://github.com/pybind/pybind11/pull/2573>`_ on 20.2)
138-
5. Cygwin/GCC (tested on 2.5.1)
138+
5. Cygwin/GCC (previously tested on 2.5.1)
139139
6. NVCC (CUDA 11.0 tested)
140-
7. NVIDIA PGI (20.7 and 20.9 tested)
140+
7. NVIDIA PGI (20.9 tested)
141141

142142
About
143143
-----

0 commit comments

Comments
 (0)