From 16f0ef4a64b6c2d8935768f4ce60f672fe556615 Mon Sep 17 00:00:00 2001 From: Anjan Roy Date: Fri, 22 Dec 2023 22:37:43 +0400 Subject: [PATCH] don't try to run tests on windows target, using Github Actions CI Signed-off-by: Anjan Roy --- .github/workflows/test_ci.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/test_ci.yml b/.github/workflows/test_ci.yml index 0c6568a..0d5f544 100644 --- a/.github/workflows/test_ci.yml +++ b/.github/workflows/test_ci.yml @@ -40,21 +40,3 @@ jobs: run: make asan_test -j - name: Execute Tests with UndefinedBehaviourSanitizer on ${{matrix.os}} run: make ubsan_test -j - build-on-windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - # From https://github.com/marketplace/actions/actions-setup-cmake - - name: Setup CMake - uses: jwlawson/actions-setup-cmake@v1.13 - with: - cmake-version: 'latest' - # From https://github.com/marketplace/actions/setup-googletest - - uses: ilammy/msvc-dev-cmd@v1 - - uses: Bacondish2023/setup-googletest@v1 - - name: Execute Tests - run: make -j - - name: Execute Tests with AddressSanitizer - run: make asan_test -j - - name: Execute Tests with UndefinedBehaviourSanitizer - run: make ubsan_test -j