Skip to content

Preparing for 1.0.1 release: This release adds conformance with MISRA… #4

Preparing for 1.0.1 release: This release adds conformance with MISRA…

Preparing for 1.0.1 release: This release adds conformance with MISRA… #4

Workflow file for this run

name: Build Status
on: [push, pull_request]
jobs:
linux:
name: "Linux - ${{ matrix.compiler.display }}"
runs-on: ubuntu-latest
strategy:
matrix:
compiler:
- { CC: gcc, display: GCC }
- { CC: clang, display: Clang }
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: CMake Build
env:
CC: ${{ matrix.platform.CC }}
CFLAGS: ${{ matrix.platform.CFLAGS }}
run: |
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
- name: Autotools Build
env:
CC: ${{ matrix.platform.CC }}
CFLAGS: ${{ matrix.platform.CFLAGS }}
run: |
./autogen.sh
./configure
make
make distcheck