fix: load dummy sound driver in GH actions workflow #186
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: build-linux | |
on: | |
push: | |
branches: [master] | |
paths: | |
- 'include/**' | |
- 'src/**' | |
- 'test/**' | |
- 'tools/**' | |
- 'vendor/**' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
- 'BSDmakefile' | |
- 'GNUmakefile' | |
- 'config.mk' | |
pull_request: | |
branches: [master] | |
types: [opened, synchronize] | |
paths: | |
- 'include/**' | |
- 'src/**' | |
- 'test/**' | |
- 'tools/**' | |
- 'vendor/**' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
- 'BSDmakefile' | |
- 'GNUmakefile' | |
- 'config.mk' | |
schedule: | |
- cron: '0 0 * * 1' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
build-analyze: | |
permissions: | |
security-events: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout-repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install-dependencies | |
run: | | |
xargs sudo apt-get install -y < Aptfile | |
sudo apt-get install -y linux-modules-extra-$(uname -r) | |
sudo depmod | |
sudo modprobe snd-dummy || true | |
- name: setup-rust-cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
cache-targets: "false" | |
- name: setup-codeql | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: c-cpp | |
config: | | |
paths-ignore: [vendor] | |
- name: build | |
run: make -j$(nproc) | |
- name: build-editor | |
run: make editor -j$(nproc) | |
- name: test | |
run: make check -j$(nproc) | |
- name: test-results-report | |
if: ${{ always() }} | |
uses: test-summary/action@v2 | |
with: | |
paths: carbon_results.xml | |
- name: test-coverage-report | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: analyze | |
uses: github/codeql-action/analyze@v3 |