From 94de149385430744e23e990bd7af3a5fa20c1132 Mon Sep 17 00:00:00 2001
From: John Jekel <JZJisawesome123@gmail.com>
Date: Sun, 7 May 2023 10:51:08 -0400
Subject: [PATCH] Give up on windows for now

---
 .github/workflows/unit_tests.yml | 6 ++++--
 tests/unit/unit_tester.cpp       | 2 ++
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml
index d9a2daf..02dd9b5 100644
--- a/.github/workflows/unit_tests.yml
+++ b/.github/workflows/unit_tests.yml
@@ -13,7 +13,8 @@ jobs:
     # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
     strategy:
       matrix:
-        os: [ubuntu-latest, macos-latest, windows-latest]
+        #os: [ubuntu-latest, macos-latest, windows-latest]
+        os: [ubuntu-latest, macos-latest]
     runs-on: ${{ matrix.os }}
 
     steps:
@@ -35,7 +36,8 @@ jobs:
     # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
     strategy:
       matrix:
-        os: [ubuntu-latest, macos-latest, windows-latest]
+        #os: [ubuntu-latest, macos-latest, windows-latest]
+        os: [ubuntu-latest, macos-latest]
     runs-on: ${{ matrix.os }}
 
     steps:
diff --git a/tests/unit/unit_tester.cpp b/tests/unit/unit_tester.cpp
index 31555cf..8a26a6a 100644
--- a/tests/unit/unit_tester.cpp
+++ b/tests/unit/unit_tester.cpp
@@ -6,6 +6,8 @@
  *
 */
 
+//FIXME when in release mode, assertions in libirve will be disabled. But we want to leave assertions actual unit tests enabled!
+
 /* Test List */
 
 #define TEST_LIST \
-- 
GitLab