Compare commits

..

1 Commits

Author SHA1 Message Date
1367aa8266 MicroSoft Windows: "it just works" 2025-09-15 12:27:22 +02:00

View File

@@ -11,9 +11,9 @@ jobs:
os: os:
- ubuntu-latest - ubuntu-latest
- ubuntu-24.04-arm - ubuntu-24.04-arm
# - windows-latest - windows-latest
# - windows-11-arm - windows-11-arm
# - macos-latest - macos-latest
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
@@ -27,16 +27,12 @@ jobs:
sudo apt update sudo apt update
sudo apt install -y libwayland-dev libxkbcommon-dev xorg-dev cmake xxd sudo apt install -y libwayland-dev libxkbcommon-dev xorg-dev cmake xxd
- name: get submodule hash
id: get-hash
run: echo "HASH=$(git submodule | sha1sum)" >$GITHUB_OUTPUT
- uses: actions/cache@v4 - uses: actions/cache@v4
with: with:
path: lib/obj/ path: lib/obj/
# I swear to god, if runner.arch displays x64 for x86_64, I will eat a potato. # I swear to god, if runner.arch displays x64 for x86_64, I will eat a potato.
# note: it is... fucking shit. # note: it is... fucking shit.
key: ${{runner.os}}_${{runner.arch}}-lib/obj-${{steps.get-hash.outputs.HASH}} key: ${{runner.os}}_${{runner.arch}}-lib/obj-${{github.sha}}
restore-keys: ${{runner.os}}_${{runner.arch}}-lib/obj- restore-keys: ${{runner.os}}_${{runner.arch}}-lib/obj-
- run: make -Bj libs - run: make -Bj libs
- run: make -j all - run: make -j all