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

Improve position and error system (#71) #172

Improve position and error system (#71)

Improve position and error system (#71) #172

Workflow file for this run

name: Tests
on:
push:
paths:
- "src/**"
- "lib/**"
- "tests/**"
- "cmake/**"
- ".github/workflows/tests.yml"
pull_request:
paths:
- "src/**"
- "lib/**"
- "tests/**"
- "cmake/**"
- ".github/workflows/tests.yml"
jobs:
tests:
name: Tests
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup LCOV
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: hrishikesh-kadam/setup-lcov@v1
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Install LLVM
uses: KyleMayes/install-llvm-action@v1
with:
version: "15"
- 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 report to Codecov
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{github.workspace}}/coverage.info
- name: Upload coverage report to Codacy
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ${{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 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Install LLVM
uses: KyleMayes/install-llvm-action@v1
with:
version: "15"
- name: Configure CMake
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: |
& "C:/Program Files (x86)/Filc/bin/filc.exe" --version
& "C:/Program Files (x86)/Filc/bin/filc.exe" --help
- name: Show version and help
if: ${{ matrix.os != 'windows-latest' }}
run: |
filc --version
filc --help