aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-05-06 17:04:40 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-05-06 17:04:40 -0400
commit6837f1af7f939ae741d4baf2d7b4723b64c3e2ee (patch)
tree3b7a1684f1b93832e5f03f749db151e4bdfa0a92
parentbe932c2f558b535ba2c2d10bf6d0df68040a1821 (diff)
downloadcleanpath-6837f1af7f939ae741d4baf2d7b4723b64c3e2ee.tar.gz
Add windows
* Fix everything being in release mode.
-rw-r--r--.github/workflows/cmake.yml13
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index bc094b7..abb6236 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -20,11 +20,15 @@ jobs:
include:
- name: Debug (Linux)
os: ubuntu-latest
- build_type: Release
+ build_type: Debug
- name: Debug (MacOS)
os: macos-latest
- build_type: Release
+ build_type: Debug
+
+ - name: Debug (Windows)
+ os: windows-latest
+ build_type: Debug
- name: Release (Linux)
os: ubuntu-latest
@@ -34,6 +38,11 @@ jobs:
os: macos-latest
build_type: Release
+ - name: Release (Windows)
+ os: windows-latest
+ build_type: Release
+
+
steps:
- uses: actions/checkout@v2