Skip to content

nightly

nightly #232

Workflow file for this run

name: build
on:
push:
repository_dispatch:
types: [nightly]
env:
HVCC_VERSION: 89446f737e2b8bc7794fbdd4de2dcce2cb43c874
CACHE_VERSION: 1
WITH_LTO: 'false'
jobs:
linux:
strategy:
matrix:
target: [linux-arm64, linux-armhf, linux-i686, linux-riscv64, linux-x86_64]
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- run: python -m pip install -U pip
- name: Install pinned hvcc
run: |
python -m pip install git+https://github.com/Wasted-Audio/hvcc.git@${{ env.HVCC_VERSION }}
if: ${{ !github.event.client_payload.nightly }}
- name: Install develop hvcc
run: |
python -m pip install git+https://github.com/Wasted-Audio/hvcc.git@${{ github.event.client_payload.branch }}
if: ${{ github.event.client_payload.nightly }}
- uses: distrho/dpf-makefile-action@v1
with:
target: ${{ matrix.target }}
windows:
strategy:
matrix:
target: [win32, win64]
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- run: python -m pip install -U pip
- name: Install pinned hvcc
run: |
python -m pip install git+https://github.com/Wasted-Audio/hvcc.git@${{ env.HVCC_VERSION }}
if: ${{ !github.event.client_payload.nightly }}
- name: Install nightly hvcc
run: |
python -m pip install git+https://github.com/Wasted-Audio/hvcc.git@${{ github.event.client_payload.branch }}
if: ${{ github.event.client_payload.nightly }}
- uses: distrho/dpf-makefile-action@v1
with:
target: ${{ matrix.target }}
macos:
strategy:
matrix:
target: [macos-intel, macos-universal]
runs-on: macos-11
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- run: python -m pip install -U pip
- name: Install pinned hvcc
run: |
python -m pip install git+https://github.com/Wasted-Audio/hvcc.git@${{ env.HVCC_VERSION }}
if: ${{ !github.event.client_payload.nightly }}
- name: Install nightly hvcc
run: |
python -m pip install git+https://github.com/Wasted-Audio/hvcc.git@${{ github.event.client_payload.branch }}
if: ${{ github.event.client_payload.nightly }}
- uses: distrho/dpf-makefile-action@v1
with:
target: ${{ matrix.target }}
pluginval:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- run: python -m pip install -U pip
- name: Install pinned hvcc
run: |
python -m pip install git+https://github.com/Wasted-Audio/hvcc.git@${{ env.HVCC_VERSION }}
if: ${{ !github.event.client_payload.nightly }}
- name: Install nightly hvcc
run: |
python -m pip install git+https://github.com/Wasted-Audio/hvcc.git@${{ github.event.client_payload.branch }}
if: ${{ github.event.client_payload.nightly }}
- uses: distrho/dpf-makefile-action@v1
with:
target: pluginval
source:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: distrho/dpf-makefile-action@v1
with:
target: source