Run clang-format #7
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: Windows | |
'on': | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'buildandroid/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'buildandroid/**' | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
CONFIGURATION: Release | |
jobs: | |
build: | |
runs-on: ${{ matrix.runner }} | |
name: ${{ matrix.name }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Windows VS 2022 | |
runner: windows-2022 | |
env: | |
wxGTK_VERSION: ${{ matrix.gtk_version && matrix.gtk_version || 3 }} | |
# Use bash as the shell, even under MSW where the default is PowerShell. | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
# required for CMake to find Ninja | |
- name: "Set up MSVC Developer Command Prompt" | |
uses: seanmiddleditch/gha-setup-vsdevenv@v3 | |
with: | |
host_arch: x86 | |
arch: win32 | |
- name: "Dependencies, configure, build" | |
shell: cmd | |
run: ci\appveyor.bat | |
- name: "Check build results" | |
shell: bash | |
run: | | |
ls -l build/$CONFIGURATION/opencpn.exe || exit 1 | |
ls -l build/cli/$CONFIGURATION/opencpn-cmd.exe || exit 1 | |
ls -l build/test/$CONFIGURATION/tests.exe || exit 1 | |
- name: "Run tests" | |
shell: bash | |
run: | | |
set -x | |
cd build | |
cmake --install . | |
cmake --build . --config $CONFIGURATION --target run-tests | |
- name: Upload | |
shell: bash | |
run: ci/generic-upload.sh | |
env: | |
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }} | |
CLOUDSMITH_REPO: ${{ secrets.CLOUDSMITH_REPO }} |