Skip to content

Commit

Permalink
continue on error
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Jun 13, 2024
1 parent 844107f commit d3bab0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
msvc2019:
runs-on: windows-2019
continue-on-error: true
strategy:
matrix:
build_type: [Release]
Expand Down Expand Up @@ -69,6 +70,7 @@ jobs:

msvc2022:
runs-on: windows-2022
continue-on-error: true
strategy:
matrix:
build_type: [Release]
Expand Down Expand Up @@ -97,6 +99,7 @@ jobs:

clang:
runs-on: windows-2019
continue-on-error: true
strategy:
matrix:
version: [11, 12, 13, 14, 15]
Expand All @@ -121,6 +124,7 @@ jobs:

clang-cl-11:
runs-on: windows-2019
continue-on-error: true
strategy:
matrix:
architecture: [Win32, x64]
Expand Down
3 changes: 1 addition & 2 deletions src/test/unit/tuvx/tuvx_c_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ class TuvxCApiTest : public ::testing::Test {

// the function that google test actually calls before each test
void SetUp() override {
tuvx = nullptr;
}

void SetUp(const char* config_path) {
Error error;
Error error = NoError();
tuvx = nullptr;
tuvx = CreateTuvx(config_path, &error);
if (!IsSuccess(error)) {
Expand Down

0 comments on commit d3bab0b

Please sign in to comment.