Files
Blitz/.gitea/workflows/ubuntu.yaml
Persson-dev 2ec9fbcd0f
Some checks failed
Linux arm64 / Build (push) Failing after 2m25s
action: install glew via apt
2024-03-14 15:29:16 +01:00

39 lines
829 B
YAML

name: Linux arm64
run-name: Build And Test
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Install deps
run : |
apt update
apt install -y libsdl2-dev libassimp-dev libglew-dev
- name: Check out repository code
uses: actions/checkout@v3
- name: Prepare XMake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
actions-cache-folder: '.xmake-cache'
actions-cache-key: 'ubuntu'
- name: Packages cache
uses: actions/cache@v4
with:
path: ~/.xmake
key: 'ubuntu-packages'
- name: XMake config
run: xmake f -p linux --root
- name: Build
run: xmake --root
- name: Test
run: xmake test --root