Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Initial bot stuff

Initial bot stuff #209

Workflow file for this run

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