mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-30 12:46:56 +00:00
Enable WERROR=y for CI and package builds so warnings in SCST code are fatal. Keep WERROR=n for regression and Coverity because these workflows must tolerate failures outside strict SCST package gates.
31 lines
784 B
YAML
31 lines
784 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
WERROR: 'y'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
compiler: [gcc, clang]
|
|
arch: [x86_64]
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- name: Install build-essential
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential debhelper devscripts dpkg-dev quilt
|
|
- name: Install multilib
|
|
run: |
|
|
sudo apt-get install -y gcc-multilib g++-multilib
|
|
if: ${{ matrix.arch == 'x86' }}
|
|
- name: Build
|
|
env:
|
|
CC: ${{ matrix.compiler }}
|
|
CFLAGS: ${{ matrix.arch == 'x86' && '-m32' || '' }}
|
|
LDFLAGS: ${{ matrix.arch == 'x86' && '-m32' || '' }}
|
|
run: make CC=${{matrix.compiler}} dpkg
|