-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b37442
commit e003275
Showing
25 changed files
with
343 additions
and
724 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,138 +3,83 @@ name: Build | |
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt-get install libsndfile1-dev libvolk2-dev libfftw3-dev catch2 | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
build: | ||
strategy: | ||
matrix: | ||
sys: | ||
- { os: windows-latest, shell: 'msys2 {0}' } | ||
- { os: ubuntu-latest, shell: bash } | ||
- { os: macos-latest, shell: bash } | ||
|
||
- name: Build | ||
uses: "./.github/actions/build" | ||
with: | ||
target: sigutils | ||
cmake_configuration_parameters: -DCMAKE_INSTALL_PREFIX=/usr | ||
|
||
- name: Build tests | ||
uses: "./.github/actions/build" | ||
with: | ||
target: sigutils_test | ||
|
||
- name: Test | ||
uses: "./.github/actions/test" | ||
runs-on: ${{ matrix.sys.os }} | ||
|
||
- name: Package | ||
uses: "./.github/actions/package" | ||
with: | ||
generators: TGZ;DEB | ||
|
||
build-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Install dependencies | ||
run: brew install libsndfile volk fftw catch2 | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
|
||
- name: Build | ||
uses: "./.github/actions/build" | ||
with: | ||
target: sigutils | ||
|
||
- name: Build tests | ||
uses: "./.github/actions/build" | ||
with: | ||
target: sigutils_test | ||
|
||
- name: Test | ||
uses: "./.github/actions/test" | ||
|
||
- name: Package | ||
uses: "./.github/actions/package" | ||
with: | ||
generators: TGZ | ||
|
||
build-windows: | ||
runs-on: windows-latest | ||
defaults: | ||
run: | ||
shell: msys2 {0} | ||
shell: ${{ matrix.sys.shell }} | ||
|
||
steps: | ||
- name: Install dependencies | ||
- name: Install dependencies (Ubuntu) | ||
if: matrix.sys.os == 'ubuntu-latest' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install meson libsndfile1-dev libvolk2-dev libfftw3-dev catch2 | ||
- name: Install dependencies (Mac OS) | ||
if: matrix.sys.os == 'macos-latest' | ||
run: brew install -vd meson libsndfile volk fftw catch2 | ||
|
||
- name: Install dependencies (Windows) | ||
if: matrix.sys.os == 'windows-latest' | ||
uses: msys2/setup-msys2@v2 | ||
with: | ||
msystem: MINGW64 | ||
update: true | ||
install: git mingw-w64-x86_64-gcc mingw-w64-x86_64-make mingw-w64-x86_64-cmake mingw-w64-x86_64-libsndfile mingw-w64-x86_64-fftw mingw-w64-x86_64-volk mingw-w64-x86_64-catch | ||
install: git mingw-w64-x86_64-meson mingw-w64-x86_64-ninja mingw-w64-x86_64-gcc mingw-w64-x86_64-libsndfile mingw-w64-x86_64-fftw mingw-w64-x86_64-volk mingw-w64-x86_64-catch | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
|
||
- name: Build | ||
uses: "./.github/actions/build" | ||
with: | ||
shell: msys2 {0} | ||
target: sigutils | ||
- name: Configure | ||
run: meson setup builddir | ||
|
||
- name: Build tests | ||
uses: "./.github/actions/build" | ||
with: | ||
shell: msys2 {0} | ||
target: sigutils_test | ||
- name: Build | ||
run: meson compile -C builddir | ||
|
||
- name: Test | ||
uses: "./.github/actions/test" | ||
with: | ||
shell: msys2 {0} | ||
|
||
- name: Package | ||
uses: "./.github/actions/package" | ||
with: | ||
generators: ZIP | ||
|
||
release: | ||
runs-on: "ubuntu-latest" | ||
needs: | ||
- build-linux | ||
- build-macos | ||
- build-windows | ||
|
||
steps: | ||
- name: Get current date | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | ||
|
||
- name: Download binaries | ||
uses: actions/download-artifact@v4 | ||
|
||
- name: Release nightly | ||
if: github.ref == 'refs/heads/master' | ||
uses: marvinpinto/[email protected] | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "latest" | ||
prerelease: true | ||
title: "Sigutils nightly (${{steps.date.outputs.date}})" | ||
files: sigutils*/* | ||
|
||
- name: Release stable | ||
if: contains(github.ref, 'refs/tags/v') | ||
uses: marvinpinto/[email protected] | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
prerelease: false | ||
title: "Sigutils ${{github.ref_name}}" | ||
files: sigutils*/* | ||
run: meson test -C builddir | ||
|
||
# TODO: Package | ||
# TODO: Upload artifacts | ||
|
||
# release: | ||
# runs-on: "ubuntu-latest" | ||
# needs: build | ||
|
||
# steps: | ||
# - name: Get current date | ||
# id: date | ||
# run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | ||
|
||
# - name: Download binaries | ||
# uses: actions/download-artifact@v4 | ||
|
||
# - name: Release nightly | ||
# if: github.ref == 'refs/heads/master' | ||
# uses: marvinpinto/[email protected] | ||
# with: | ||
# repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
# automatic_release_tag: "latest" | ||
# prerelease: true | ||
# title: "Sigutils nightly (${{steps.date.outputs.date}})" | ||
# files: sigutils*/* | ||
|
||
# - name: Release stable | ||
# if: contains(github.ref, 'refs/tags/v') | ||
# uses: marvinpinto/[email protected] | ||
# with: | ||
# repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
# prerelease: false | ||
# title: "Sigutils ${{github.ref_name}}" | ||
# files: sigutils*/* |
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
Oops, something went wrong.