This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
Προσθηκη συνεχους ολοκληρωσης στο λειτουργικο συστημα παραθύρων #35
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/install-qt-action@v3.2.1 | |
with: | |
version: '6.2.*' | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: install-deps | |
run: vcpkg install --triplet x64-windows gtest | |
- name: configure | |
run: cmake -B build -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -T ClangCL | |
- name: make | |
run: cmake --build build --target hydra |