Specify linux headers dependencies in control file #120
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
compiler: [gcc, clang] | |
arch: [x86_64] | |
steps: | |
- uses: actions/checkout@v3 | |
- 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: -Werror ${{ matrix.arch == 'x86' && '-m32' || '' }} | |
LDFLAGS: ${{ matrix.arch == 'x86' && '-m32' || '' }} | |
run: make CC=${{matrix.compiler}} dpkg |