mirror of
https://github.com/Kbz-8/Pulse.git
synced 2026-01-11 15:33:34 +00:00
28 lines
586 B
YAML
28 lines
586 B
YAML
name: Linux Build
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
paths-ignore:
|
|
- '.github/workflows/macos-build.yml'
|
|
- '.github/workflows/msys2-build.yml'
|
|
- '.github/workflows/windows-build.yml'
|
|
- '.gitignore'
|
|
- 'LICENSE'
|
|
- 'CHANGELOG.md'
|
|
- 'README.md'
|
|
|
|
jobs:
|
|
Build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
arch: [x86_64]
|
|
confs:
|
|
- { mode: debug, archive: yes }
|
|
- { mode: release, archive: yes }
|
|
uses: ./.github/workflows/linux-base.yml
|
|
with:
|
|
target: ${{ matrix.target }}
|