File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1717jobs :
1818 build :
1919 name : Test on ${{ matrix.os }} with all supported Python versions
20- runs-on : ${{ format('{0}-latest ', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov
20+ runs-on : ${{ format('{0}', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov
2121
2222 strategy :
2323 matrix :
24- os : [ubuntu, macos]
24+ os : [ubuntu-latest , macos-13 ]
2525
2626 steps :
2727 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 3131except Exception :
3232 opencl_present = False
3333
34- gcc_present = shutil .which ("gcc " ) is not None
34+ gcc_present = shutil .which ("g++ " ) is not None
3535gfortran_present = shutil .which ("gfortran" ) is not None
3636openmp_present = "libgomp" in subprocess .getoutput (["ldconfig -p | grep libgomp" ])
3737openacc_present = shutil .which ("nvc++" ) is not None
@@ -95,7 +95,7 @@ def skip_backend(backend: str):
9595 elif backend .upper () == "OPENCL" and not opencl_present :
9696 pytest .skip ("PyOpenCL not installed or no OpenCL device detected" )
9797 elif backend .upper () == "C" and not gcc_present :
98- pytest .skip ("No gcc on PATH" )
98+ pytest .skip ("No g++ on PATH" )
9999 elif backend .upper () == "FORTRAN" and not gfortran_present :
100100 pytest .skip ("No gfortran on PATH" )
101101 elif backend .upper () == "OPENACC" and not openacc_present :
You can’t perform that action at this time.
0 commit comments