From d38d67fee0b10314b83bc5e30b2dcbbfa8fc6839 Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Fri, 1 Jan 2021 19:02:26 +0000 Subject: ci: Add win32 build to github actions Signed-off-by: GitHub --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a8e2bf..7755cd1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,3 +43,23 @@ jobs: - name: Configure Build & Test shell: bash run: ./travis.sh macos + + build-win32: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - uses: actions/cache@v2 + with: + path: c:\Users\runneradmin\AppData\Local\Temp\chocolatey + key: chocolatey-cache-${{ hashFiles('.github/workflows/ci.yml') }} + - name: Install Prerequisites + run: choco install openssl + - name: Configure Build & Test + shell: bash + run: | + cmake -E make_directory build/ + cmake -S . -B build/ + cmake --build build/ --config Debug --target INSTALL + ctest -V ./build/ -- cgit v1.2.1