Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2073d11fca | |||
| caa081601b | |||
| 96eae5a08d | |||
| bfbc1e11fa | |||
| 8709350cb6 | |||
| f7dbf0c1ab | |||
| 1723d9c437 | |||
| 12c3e3e6af | |||
| e994abeb9f | |||
| c2e43e38d9 | |||
| 7efb6e2693 | |||
| 07d11da9b9 | |||
| b8271defbe | |||
| 265990514f | |||
| 0606fb568f | |||
| 4ec541cdc7 | |||
| 7c8c795b71 | |||
| d690fa7bf2 | |||
| ca1067f276 | |||
| 05b2f01b0d | |||
| 42aad1059c | |||
| b16fa992b3 |
41
.gitea/workflows/linux_amd64.yml
Normal file
41
.gitea/workflows/linux_amd64.yml
Normal file
@@ -0,0 +1,41 @@
|
||||
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 crossbuild-essential-arm64 -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 -p linux -a x86_64 -v --trybuild=cmake
|
||||
xmake require -v -j 10 --extra={system=false} -y libsdl
|
||||
echo "caca"
|
||||
xmake
|
||||
|
||||
- name: 🚀 Upload
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: SimpleDrum_Linux_amd64.vst3
|
||||
path: ${{ github.workspace }}/build/SimpleDrum_artefacts/VST3/
|
||||
39
.gitea/workflows/linux_arm.yml
Normal file
39
.gitea/workflows/linux_arm.yml
Normal file
@@ -0,0 +1,39 @@
|
||||
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@v3
|
||||
with:
|
||||
name: SimpleDrum_Linux_arm64.vst3
|
||||
path: ${{ github.workspace }}/build/SimpleDrum_artefacts/VST3/
|
||||
Binary file not shown.
Reference in New Issue
Block a user