Skip to content

Commit

Permalink
Set up GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Oct 15, 2024
1 parent b5e2132 commit a3b2626
Show file tree
Hide file tree
Showing 3 changed files with 173 additions and 1 deletion.
80 changes: 80 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Bench

on:
pull_request:
branches:
- main
- develop
push:
branches:
- ci

workflow_dispatch:

jobs:
build_and_test:
name: Build/Test plugin on ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # show all errors for each platform (vs. cancel jobs on error)
matrix:
include:
- name: Linux
os: ubuntu-22.04
cmake_args: "-DCMAKE_LINKER_TYPE=MOLD -DCMAKE_C_COMPILER=clang-15 -DCMAKE_CXX_COMPILER=clang++-15"
nparallel: 4
- name: Windows
os: windows-2022
cmake_args: -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl
nparallel: 4
- name: MacOS
os: macos-14
cmake_args: ""
nparallel: 4

steps:
- name: Install Linux Deps
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install libasound2-dev libcurl4-openssl-dev libx11-dev libxinerama-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev libjack-jackd2-dev
sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main"
sudo apt install clang-15 -y
- name: Install Ninja
if: runner.os == 'Linux' || runner.os == 'Windows'
uses: seanmiddleditch/gha-setup-ninja@master

- name: Get latest CMake
if: runner.os == 'Linux' || runner.os == 'Windows'
uses: lukka/get-cmake@latest

- uses: rui314/setup-mold@v1
if: runner.os == 'Linux'

- name: Upgrade LLVM
if: runner.os == 'Windows'
run: choco upgrade llvm --version=18.1.8 --allow-downgrade

- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2

- name: Setup MSVC devcmd
if: runner.os == 'Windows'
uses: ilammy/msvc-dev-cmd@v1

- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
token: ${{ secrets.OUR_GITHUB_PAT }}

- name: Cmake Configure
run: cmake -Bbuild -G"Ninja Multi-Config" -DCHOWDSP_FFT_TESTING=ON ${{ matrix.cmake_args }}

- name: Build Benchmarks
run: cmake --build build --config Release --parallel ${{ matrix.nparallel }} --target bench_chowdsp_fft

- name: Run Benchmarks
run: ./build/bench/Release/bench_chowdsp_fft
92 changes: 92 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
name: Test

on:
pull_request:
branches:
- main
- develop
push:
branches:
- ci

workflow_dispatch:

jobs:
build_and_test:
name: Build/Test plugin on ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # show all errors for each platform (vs. cancel jobs on error)
matrix:
include:
- name: Linux
os: ubuntu-22.04
cmake_args: "-DCMAKE_LINKER_TYPE=MOLD -DCMAKE_C_COMPILER=clang-15 -DCMAKE_CXX_COMPILER=clang++-15"
nparallel: 4
- name: Windows
os: windows-2022
cmake_args: -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl
nparallel: 4
- name: MacOS
os: macos-14
cmake_args: "-D\"CMAKE_OSX_ARCHITECTURES=arm64;x86_64\""
nparallel: 4

steps:
- name: Install Linux Deps
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install libasound2-dev libcurl4-openssl-dev libx11-dev libxinerama-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev libjack-jackd2-dev
sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main"
sudo apt install clang-15 -y
- name: Install Ninja
if: runner.os == 'Linux' || runner.os == 'Windows'
uses: seanmiddleditch/gha-setup-ninja@master

- name: Get latest CMake
if: runner.os == 'Linux' || runner.os == 'Windows'
uses: lukka/get-cmake@latest

- uses: rui314/setup-mold@v1
if: runner.os == 'Linux'

- name: Upgrade LLVM
if: runner.os == 'Windows'
run: choco upgrade llvm --version=18.1.8 --allow-downgrade

- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2

- name: Setup MSVC devcmd
if: runner.os == 'Windows'
uses: ilammy/msvc-dev-cmd@v1

- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
token: ${{ secrets.OUR_GITHUB_PAT }}

- name: Cmake Configure
run: cmake -Bbuild -G"Ninja Multi-Config" -DCHOWDSP_FFT_TESTING=ON ${{ matrix.cmake_args }}

- name: Build Test C++ (Debug)
run: cmake --build build --config Debug --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_cpp

- name: Run Test C++ (Debug)
run: ./build/test/Debug/test_chowdsp_fft_cpp

- name: Build Test C (Debug)
run: cmake --build build --config Debug --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_c

- name: Run Test C (Debug)
run: ./build/test/Debug/test_chowdsp_fft_c

- name: Build Test C++ (Release)
run: cmake --build build --config Release --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_cpp

- name: Run Test C++ (Release)
run: ./build/test/Release/test_chowdsp_fft_cpp
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ message(STATUS "chowdsp_fft -- Configuring tests")
include(CPM.cmake)
CPMAddPackage("gh:catchorg/[email protected]")
include(${Catch2_SOURCE_DIR}/extras/Catch.cmake)
CPMAddPackage("bb:jpommier/pffft#master")
CPMAddPackage("bb:jpommier/pffft#fbc4058602803f40dc554b8a5d2bcc694c005f2f")

add_executable(test_chowsdp_fft_cpp test.cpp ${pffft_SOURCE_DIR}/pffft.c)
target_link_libraries(test_chowsdp_fft_cpp PRIVATE chowdsp_fft Catch2::Catch2WithMain)
Expand Down

0 comments on commit a3b2626

Please sign in to comment.