Skip to content

make C++ <filesystem> check run to be stricter #1607

make C++ <filesystem> check run to be stricter

make C++ <filesystem> check run to be stricter #1607

Workflow file for this run

name: oneapi-linux
env:
CC: icx
CXX: icpx
FC: ifx
# https://github.com/oneapi-src/oneapi-ci/blob/master/.github/workflows/build_all.yml
CMAKE_BUILD_PARALLEL_LEVEL: 4
CMAKE_BUILD_TYPE: Release
# debug triggers asan build errors in general with oneAPI Linux
CMAKE_INSTALL_PREFIX: ~/libs
CMAKE_PREFIX_PATH: ~/libs
on:
push:
paths:
- "**.c"
- "**.h"
- "**.cpp"
- "**.f90"
- "**.F90"
- "**.cmake"
- "**/CMakeLists.txt"
- ".github/workflows/oneapi-linux.yml"
- "!memcheck.cmake"
- "!concepts/**"
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
cpp: [true, false]
steps:
- uses: actions/checkout@v4
- name: cache install oneAPI
id: cache-install
uses: actions/cache@v4
with:
path: |
/opt/intel/oneapi
key: install-apt
- name: non-cache install oneAPI
if: steps.cache-install.outputs.cache-hit != 'true'
timeout-minutes: 5
run: |
.github/workflows/oneapi_setup_apt_repo_linux.sh
sudo apt install intel-oneapi-compiler-dpcpp-cpp intel-oneapi-compiler-fortran
- name: Setup Intel oneAPI environment
run: |
source /opt/intel/oneapi/setvars.sh
printenv >> $GITHUB_ENV
- name: Configure CMake
timeout-minutes: 1
run: >-
cmake --preset default
-Dffilesystem_cpp:BOOL=${{ matrix.cpp }}
--log-level=VERBOSE
- name: print config log
if: ${{ failure() }}
run: cat build/CMakeFiles/CMakeConfigureLog.yaml
- name: Release workflow
run: cmake --workflow --preset default
- name: install package
run: cmake --install build
- name: example workflow
run: cmake -S example -B example/build
- run: cmake --build example/build
- run: ctest --test-dir example/build -V
# BUILD_SHARED_LIBS=false since as with any C++ / Fortran program with Intel compiler,
# need to have GCC environment carefully set
# so that underlying libstdc++ is compatible.
- name: exclude unused files from cache
if: steps.cache-install.outputs.cache-hit != 'true'
run: .github/workflows/oneapi_cache_exclude_linux.sh