Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Update README to reflect project abandonment #23

Update README to reflect project abandonment

Update README to reflect project abandonment #23

name: Continuous Windows
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
windows:
name: ${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}}
runs-on: windows-latest
environment: CI
strategy:
fail-fast: false
matrix:
name: [windows-msvc] # , windows-msvc-clang-cl
buildtype: [debug, release]
include:
- name: windows-msvc
family: windows
compiler: msvc
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: ilammy/msvc-dev-cmd@v1
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Run vcpkg
uses: lukka/run-vcpkg@v10
with:
appendedCacheKey: ${{matrix.name}}${{matrix.buildtype}}
- name: Run CTest workflow
run: |
$env:DOGEN_BUILD_PROVIDER="github"
$env:DOGEN_BUILD_COMMIT="$env:GITHUB_SHA"
$env:DOGEN_BUILD_NUMBER="$env:GITHUB_RUN_NUMBER"
$env:DOGEN_BUILD_TIMESTAMP=Get-Date -format "yyyy/MM/dd HH:mm:ss"
$preset="${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}}"
$cmake_args="build_group=Experimental,preset=$preset"
ctest -VV --preset $preset --script "CTest.cmake,$cmake_args"
- name: Gitter
if: always()
uses: juztcode/gitter-github-action@v2
with:
room-id: ${{secrets.GITTER_ROOM_ID}}
token: ${{secrets.GITTER_TOKEN}}
text: ${{github.workflow}} - ${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}} - ${{job.status}}