Skip to content

Commit 4dbcb13

Browse files
committed
update main CI
1 parent 42bd13d commit 4dbcb13

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

.github/workflows/MacOs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
{ tool: gcc, ver: 12 },
2121
{ tool: gcc, ver: 13 } ]
2222
build_type: [ Release ]
23-
os: [ macos-12, macos-13 ]
23+
os: [ macos-12 ]
2424
std: [ 17 ]
2525
library_type: [ Static ]
2626
include:

Tests/Integration/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ target_link_libraries(IntegrationTests PUBLIC
1010
7bitDI
1111
)
1212

13-
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND APPLE)
14-
target_compile_options(IntegrationTests PRIVATE -Wl,-ld_classic)
15-
endif ()
16-
1713
include(GoogleTest)
1814
gtest_discover_tests(IntegrationTests
1915
WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})

Tests/Unit/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ target_link_libraries(UnitTests PUBLIC
1010
7bitDI
1111
)
1212

13-
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND APPLE)
14-
target_compile_options(UnitTests PRIVATE -Wl,-ld_classic)
15-
endif ()
16-
1713
include(GoogleTest)
1814
gtest_discover_tests(UnitTests
1915
WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})

0 commit comments

Comments
 (0)