From 42aad1059c09c8aca79e5813c932dac334bde9b6 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Sat, 28 Sep 2024 23:50:15 +0200 Subject: [PATCH] add ci --- .gitea/workflows/linux.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitea/workflows/linux.yml diff --git a/.gitea/workflows/linux.yml b/.gitea/workflows/linux.yml new file mode 100644 index 0000000..5457775 --- /dev/null +++ b/.gitea/workflows/linux.yml @@ -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 \ No newline at end of file