Skip to content

ci: enable workflow_dispatch #34

ci: enable workflow_dispatch

ci: enable workflow_dispatch #34

Workflow file for this run

name: amd64 Windows
on: [push, pull_request, workflow_dispatch]
jobs:
# Building using the github runner environement directly.
visual-studio:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install SWIG 4.0.2
run: |
(New-Object System.Net.WebClient).DownloadFile("http://prdownloads.sourceforge.net/swig/swigwin-4.0.2.zip","swigwin-4.0.2.zip");
Expand-Archive .\swigwin-4.0.2.zip .;
echo "$((Get-Item .).FullName)/swigwin-4.0.2" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Check swig
run: swig -version
- name: Check mvn
run: mvn.cmd --version
- name: Check cmake
run: cmake --version
- name: Configure
run: cmake -S. -Bbuild -G "Visual Studio 17 2022" -DCMAKE_CONFIGURATION_TYPES=Release -DCMAKE_INSTALL_PREFIX=install -DSKIP_GPG=ON
- name: Build
run: cmake --build build --config Release --target ALL_BUILD -v -- /verbosity:diag /maxcpucount
- name: Test
run: cmake --build build --config Release --target RUN_TESTS -v -- /verbosity:diag /maxcpucount
- name: Install
run: cmake --build build --config Release --target INSTALL -v -- /verbosity:diag /maxcpucount