Add missing declaration of index variable in non-volk builds #174
This file contains hidden or 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 | |
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 | |
- 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" | |
- 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} | |
steps: | |
- name: Install dependencies | |
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 | |
- 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: Build tests | |
uses: "./.github/actions/build" | |
with: | |
shell: msys2 {0} | |
target: sigutils_test | |
- 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*/* |