This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
Initial bot stuff #209
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Windows | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: install-qt | |
uses: jurplel/[email protected] | |
with: | |
version: '6.2.*' | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: ccache | |
uses: hendrikmuhs/[email protected] | |
- name: install-deps | |
run: vcpkg install --triplet x64-windows lua | |
- name: configure | |
run: cmake -B build -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON | |
- name: make | |
run: cmake --build build --target hydra --config Release |