tests.yml 2.94 KB
name: Tests
on:
  push:
    branches:
      - master
      - v*
  pull_request:
    branches:
      - master

jobs:
  pre-commit:
    name: Formatting
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: actions/setup-python@v2
    - uses: pre-commit/action@v2.0.0

  cuda-build:
    name: CUDA build only
    runs-on: ubuntu-latest
    container: nvidia/cuda:10.2-devel-ubuntu18.04
    steps:
    - uses: actions/checkout@v1
      with:
        submodules: true
    - name: Add wget
      run: apt-get update && apt-get install -y wget
    - name: Install Modern CMake
      run: wget -qO- "https://cmake.org/files/v3.16/cmake-3.16.0-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local
    - name: Configure
      run: cmake -S . -B build -DCLI11_CUDA_TESTS=ON
    - name: Build
      run: cmake --build build -j2

  cmake-config:
    name: CMake config check
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
      with:
        submodules: true
    - name: CMake 3.4
      uses: ./.github/actions/cmake_config
      with:
        version: 3.4.3
    - name: CMake 3.5
      uses: ./.github/actions/cmake_config
      with:
        version: 3.5.2
      if: success() || failure()
    - name: CMake 3.6
      uses: ./.github/actions/cmake_config
      with:
        version: 3.6.3
      if: success() || failure()
    - name: CMake 3.7
      uses: ./.github/actions/cmake_config
      with:
        version: 3.7.2
      if: success() || failure()
    - name: CMake 3.8
      uses: ./.github/actions/cmake_config
      with:
        version: 3.8.2
      if: success() || failure()
    - name: CMake 3.9
      uses: ./.github/actions/cmake_config
      with:
        version: 3.9.6
      if: success() || failure()
    - name: CMake 3.10
      uses: ./.github/actions/cmake_config
      with:
        version: 3.10.3
      if: success() || failure()
    - name: CMake 3.11 (full)
      uses: ./.github/actions/cmake_config
      with:
        version: 3.11.4
        options: -DCLI11_SANITIZERS=ON -DCLI11_BUILD_EXAMPLES_JSON=ON
      if: success() || failure()
    - name: CMake 3.12
      uses: ./.github/actions/cmake_config
      with:
        version: 3.12.4
      if: success() || failure()
    - name: CMake 3.13
      uses: ./.github/actions/cmake_config
      with:
        version: 3.13.5
      if: success() || failure()
    - name: CMake 3.14
      uses: ./.github/actions/cmake_config
      with:
        version: 3.14.7
      if: success() || failure()
    - name: CMake 3.15
      uses: ./.github/actions/cmake_config
      with:
        version: 3.15.6
      if: success() || failure()
    - name: CMake 3.16
      uses: ./.github/actions/cmake_config
      with:
        version: 3.16.8
      if: success() || failure()
    - name: CMake 3.16 (full)
      uses: ./.github/actions/cmake_config
      with:
        version: 3.17.3
        options: -DCLI11_SANITIZERS=ON -DCLI11_BUILD_EXAMPLES_JSON=ON
      if: success() || failure()