Skip to content
This repository has been archived by the owner on Jun 29, 2024. It is now read-only.

Try fix windows install workflow #51

Try fix windows install workflow

Try fix windows install workflow #51

Workflow file for this run

name: Tests
on:
push:
paths:
- "src/**"
- "tests/**"
- ".github/workflows/tests.yml"
pull_request:
paths:
- "src/**"
- "tests/**"
- ".github/workflows/tests.yml"
jobs:
tests:
name: Tests
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup LCOV
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: hrishikesh-kadam/setup-lcov@v1
- name: Configure CMake
if: ${{ matrix.os == 'ubuntu-latest' }}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DCODE_COVERAGE=ON
- name: Configure CMake
if: ${{ matrix.os != 'ubuntu-latest' }}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON
- name: Build
run: cmake --build ${{github.workspace}}/build --target tests
- name: Run tests
run: cd ${{github.workspace}}/build && ctest
- name: Generate coverage report
if: ${{ matrix.os == 'ubuntu-latest' }}
run: ${{github.workspace}}/bin/coverage.sh
- name: Upload coverage reports to Codecov
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{github.workspace}}/coverage.info
# clang-tidy:
# continue-on-error: true # It not really matter if this job failed
# needs:
# - tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
#
# - name: Configure CMake
# run: cmake -B ${{github.workspace}}/build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
#
# - name: Run clang-tidy
# run: clang-tidy -p ${{github.workspace}}/build/ src/**/*.{cpp,hpp,h} tests/**/*.cpp
build:
name: Build & Run
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
# - name: Configure CMake for Windows
# if: ${{ matrix.os == 'windows-latest' }}
# run: cmake -B ${{github.workspace}}/build
- name: Configure CMake
#if: ${{ matrix.os != 'windows-latest' }}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
- name: Build for Windows
if: ${{ matrix.os == 'windows-latest' }}
run: cmake --build ${{github.workspace}}/build --config Release
- name: Build
if: ${{ matrix.os != 'windows-latest' }}
run: cmake --build ${{github.workspace}}/build
- name: Install for Windows
if: ${{ matrix.os == 'windows-latest' }}
run: cmake --install ${{github.workspace}}/build
- name: Install
if: ${{ matrix.os != 'windows-latest' }}
run: sudo cmake --install ${{github.workspace}}/build
- name: Show version and help for Windows
if: ${{ matrix.os == 'windows-latest' }}
run: |
filc.exe --version
filc.exe --help
- name: Show version and help
if: ${{ matrix.os != 'windows-latest' }}
run: |
filc --version
filc --help