Files
SimpleDrums/.gitea/workflows/linux.yml
Simon Pribylski 12c3e3e6af
Some checks failed
Linux arm64 / Build (push) Failing after 2m27s
oui oui
2024-09-28 22:38:57 +00:00

39 lines
897 B
YAML

name: Linux arm64
run-name: Build And Test
on: [push]
env:
XMAKE_ROOT: "y"
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: 🧾 Check out
uses: actions/checkout@v3
with:
submodules: "recursive"
- name: 🤖 Install Cmake
run: |
apt update
apt install cmake libsdl2-dev -y
- name: 🍗 Setup XMake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
actions-cache-folder: '.xmake-cache'
actions-cache-key: 'xmake-ubuntu'
- name: 🏗️ Build
run: |
xmake f -m release --trybuild=cmake
xmake
- name: 🚀 Upload
uses: actions/upload-artifact@v4
with:
name: SimpleDrum_Linux_arm64.vst3
path: ${{ github.workspace }}/build/SimpleDrum_artefacts/VST3/SimpleDrum.vst3