From cb04167671f53512ac02c6a91662fa744ad70e24 Mon Sep 17 00:00:00 2001 From: tsone Date: Mon, 27 Jan 2025 13:05:49 +0800 Subject: [PATCH] added git workflow for contrib --- .github/workflows/build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac0cc19..7ae4c94 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,3 +30,30 @@ jobs: with: name: nsfplay-unstable--${{ env.BUILD_TAG }} path: artifact/ + + build-contrib-windown: + name: Contrib Windows + runs-on: windows-2019 + steps: + - name: Checkout Files + uses: actions/checkout@v4 + - name: Build + run: make -C contrib + + build-contrib-ubuntu: + name: Contrib Ubuntu + runs-on: ubuntu-latest + steps: + - name: Checkout Files + uses: actions/checkout@v4 + - name: Build + run: make -C contrib + + build-contrib-macos: + name: Contrib macOS + runs-on: macos-latest + steps: + - name: Checkout Files + uses: actions/checkout@v4 + - name: Build + run: make -C contrib