Andi-10609 : Correct CAN-FD error frame conversion #217
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CMake | |
on: [push, pull_request, fork, workflow_dispatch] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-20.04 | |
- os: windows-latest | |
- os: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Install (ubuntu) | |
if: matrix.os == 'ubuntu-20.04' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libpcap-dev | |
- name: Install (windows) | |
if: matrix.os == 'windows-latest' | |
run: | | |
choco upgrade chocolatey -version 1.4.0 -allow-downgrade -y | |
choco install npcap --version 0.86 -y | |
- name: Install (macos) | |
if: matrix.os == 'macos-latest' | |
run: brew install libpcap | |
- name: Create Build Environment | |
run: cmake -E make_directory build | |
- name: Configure CMake | |
working-directory: build | |
run: cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
- name: Build | |
working-directory: build | |
run: | | |
cmake --build . --config ${{env.BUILD_TYPE}} | |
cmake --install . --prefix ../dist --component tecmp_converter | |
- name: Test | |
working-directory: build | |
run: | | |
ctest -C ${{env.BUILD_TYPE}} --output-on-failure | |
git diff --exit-code | |
- name: 'Upload Artifacts' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{matrix.os}} artifacts | |
path: dist |