add ci
This commit is contained in:
30
.gitea/workflows/linux.yml
Normal file
30
.gitea/workflows/linux.yml
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
name: Linux arm64
|
||||||
|
run-name: Build And Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 🧾 Check out
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: "recursive"
|
||||||
|
|
||||||
|
- name: 🏗️ Build
|
||||||
|
run: |
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Release -B build
|
||||||
|
cmake --build build
|
||||||
|
|
||||||
|
- name: 🚀 Upload
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: SimpleDrum_Linux.vst3
|
||||||
|
path: ${{ github.workspace }}/build/SimpleDrum_artefacts/Release/VST3/SimpleDrum.vst3
|
||||||
Reference in New Issue
Block a user