From f8c2d85ad4a8ca99b2108942e28c8ea7631463d0 Mon Sep 17 00:00:00 2001 From: Amilcar Lucas Date: Thu, 25 Apr 2024 09:40:13 +0200 Subject: [PATCH] Create windows-cmake-compile.yml --- .github/workflows/windows-cmake-compile.yml | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/windows-cmake-compile.yml diff --git a/.github/workflows/windows-cmake-compile.yml b/.github/workflows/windows-cmake-compile.yml new file mode 100644 index 0000000..9883370 --- /dev/null +++ b/.github/workflows/windows-cmake-compile.yml @@ -0,0 +1,28 @@ +name: CI/CD + +on: [push, pull_request] + +jobs: + compile: + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install dependencies + run: | + choco install -y make gcc gcc-c++ qt5-win64-vs2017 + + - name: Setup CMake + uses: actions/setup-cmake@v1 + with: + cmake-version: '3.16.4' + + - name: Compile + run: | + mkdir build + cd build + cmake .. + cmake --build . + cmake --install .