mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 09:35:46 +01:00
Now utilising a process to generate a .c file using `xxd`, and compiling those to object files.
39 lines
1.0 KiB
YAML
39 lines
1.0 KiB
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
compile-and-test:
|
|
strategy:
|
|
fail-fast: false # disable fail fast, so feedback is provided for all matrix combinations
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- ubuntu-24.04-arm
|
|
# - windows-latest
|
|
# - windows-11-arm
|
|
- macos-latest
|
|
runs-on: ${{matrix.os}}
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 1
|
|
|
|
- name: "Linux: install deps"
|
|
if: runner.os == 'Linux'
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install -y libwayland-dev libxkbcommon-dev xorg-dev cmake xxd
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: lib/obj/
|
|
# I swear to god, if runner.arch displays x64 for x86_64, I will eat a potato.
|
|
key: ${{runner.os}}_${{runner.arch}}-lib/obj-${{github.sha}}
|
|
restore-keys: ${{runner.os}}_${{runner.arch}}-lib/obj-
|
|
- run: make -Bj libs
|
|
- run: make -j all
|
|
- run: make -j test
|