cmake.yml (2175B)
1 name: CI 2 3 on: 4 push: 5 branches: 6 - main 7 - develop 8 pull_request: 9 branches: 10 - main 11 - develop 12 13 workflow_dispatch: 14 15 jobs: 16 build_and_test: 17 if: contains(toJson(github.event.commits), '***NO_CI***') == false && contains(toJson(github.event.commits), '[ci skip]') == false && contains(toJson(github.event.commits), '[skip ci]') == false 18 name: Test plugin on ${{ matrix.os }} 19 runs-on: ${{ matrix.os }} 20 strategy: 21 fail-fast: false # show all errors for each platform (vs. cancel jobs on error) 22 matrix: 23 os: [ubuntu-latest, windows-2019, macOS-latest] 24 25 steps: 26 - name: Install Linux Deps 27 if: runner.os == 'Linux' 28 run: | 29 sudo apt-get update 30 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 lv2-dev 31 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 9 32 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 9 33 - name: Get latest CMake 34 uses: lukka/get-cmake@latest 35 36 - name: Checkout code 37 uses: actions/checkout@v2 38 with: 39 submodules: recursive 40 41 - name: Configure 42 shell: bash 43 run: cmake -Bbuild 44 45 - name: Build 46 shell: bash 47 run: cmake --build build --config Release --parallel 4 48 49 - name: Validate 50 if: runner.os == 'Windows' 51 run: bash validate.sh 52 53 - name: Upload Linux Artifact GitHub Action 54 if: runner.os == 'Linux' 55 uses: actions/upload-artifact@v2 56 with: 57 name: linux-assets 58 path: /home/runner/work/NeuralPi/NeuralPi/build/NeuralPi_artefacts 59 60 - name: Upload Mac Artifact GitHub Action 61 if: runner.os == 'macOS' 62 uses: actions/upload-artifact@v2 63 with: 64 name: mac-assets 65 path: /Users/runner/work/NeuralPi/NeuralPi/build/NeuralPi_artefacts 66 67 - name: Upload Windows Artifact GitHub Action 68 if: runner.os == 'Windows' 69 uses: actions/upload-artifact@v2 70 with: 71 name: win-assets 72 path: D:/a/NeuralPi/NeuralPi/build/NeuralPi_artefacts