Build scripts for linux plugin #1
Workflow file for this run
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
name: pack | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install tools | |
run: | | |
sudo apt install -y build-essential nasm yasm meson | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Install VS | |
run: | | |
brew install vapoursynth | |
- name: Build | |
run: | | |
pushd VapourSynth | |
bash build_plugin.sh | |
popd | |
- name: Upload VapourSynth plugin | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vslsmashsource | |
path: VapourSynth/vs_build/libvslsmashsource.so |