Skip to content

Linux Build

Linux Build #278

Workflow file for this run

---
# This workflow will build and test syndig in various configurations on Linux.
name: Linux Build
on:
push:
pull_request:
types: [opened]
schedule:
- cron: '23 4 * * 5'
jobs:
build-linux:
name: Build on Linux
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [gcc, clang]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libpulse-dev libasound2-dev
- name: Build and Test
env:
CC: ${{ matrix.compiler }}
run: |
make