mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 09:55:45 +01:00
I am done, I could not take it anymore. Windows cross-compilation was driving me mad, I'll figure something else out... probably. I just can't deal with this anymore right now. It will be added back but I am so fucking tired of messing about with vcpkg and all that crap.
53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
# Copyright (c) 2025 Quinn
|
|
# Licensed under the MIT Licence. See LICENSE for details
|
|
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
env:
|
|
VCPKG_DISABLE_METRICS: 1
|
|
VCPKG_ROOT: ${{github.workspace}}/.vcpkg
|
|
WINEPREFIX: /tmp/wineprefix
|
|
jobs:
|
|
#
|
|
# the mega job containing all things we need to do, since setting up a single system is more efficient than installing the same stuff on multiple ones
|
|
#
|
|
exec-ci-tasks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# general setup
|
|
- name: checkout main branch
|
|
uses: actions/checkout@v4
|
|
- name: checkout vcpkg
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: microsoft/vcpkg
|
|
path: ${{env.VCPKG_ROOT}}
|
|
|
|
- name: get library data
|
|
id: libdat
|
|
run: echo "LIBS_HASH=vcpkg_installed-$(cat vcpkg.json | sha256sum | cut -d ' ' -f1)" >>"$GITHUB_OUTPUT"
|
|
|
|
# restore the cache
|
|
- uses: actions/cache@v4
|
|
id: vcpkg-cache
|
|
with:
|
|
path: vcpkg_installed
|
|
key: ${{matrix.os}}-${{steps.libdat.outputs.LIBS_HASH}}
|
|
restore-keys: ${{matrix.os}}-vcpkg_installed-
|
|
|
|
# setup vcpkg if the cache didn't hit
|
|
- name: install vcpkg dependencies
|
|
if: steps.vcpkg-cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
"$VCPKG_ROOT/bootstrap-vcpkg.sh"
|
|
"$VCPKG_ROOT/vcpkg" install
|
|
|
|
# perform continuous integration actions
|
|
- run: make compile -j
|
|
- run: make run DEBUG=test -j
|