Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporary #4

Merged
merged 9 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/CMake-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,26 @@ jobs:
#
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix:
os: [ubuntu-latest, windows-latest]
os: [windows-latest] #, ubuntu-latest]
build_type: [Release]
c_compiler: [gcc, clang, cl]
include:
- os: windows-latest
c_compiler: cl
cpp_compiler: cl
- os: ubuntu-latest
c_compiler: gcc
cpp_compiler: g++
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
# - os: ubuntu-latest
# c_compiler: gcc
# cpp_compiler: g++
# - os: ubuntu-latest
# c_compiler: clang
# cpp_compiler: clang++
exclude:
- os: windows-latest
c_compiler: gcc
- os: windows-latest
c_compiler: clang
- os: ubuntu-latest
c_compiler: cl
# - os: ubuntu-latest
# c_compiler: cl

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion table/OrderedTable/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../3rdparty")
add_executable(${test} ${srcs} ${hdrs})
target_link_libraries(${test} ${include} gtest)
set_target_properties(${test} PROPERTIES FOLDER table/${nameBaseProj})
add_test(${nameBaseProj}_gtest ${CMAKE_BINARY_DIR}/bin/${test})
#add_test(${nameBaseProj}_gtest ${CMAKE_BINARY_DIR}/bin/${test})
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#include <gtest.h>
#include "VectorTable.h"
using namespace std;
122 changes: 0 additions & 122 deletions table/OrderedTable/test/test_polinom.cpp

This file was deleted.

2 changes: 1 addition & 1 deletion table/VectorTable/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../3rdparty")
add_executable(${test} ${srcs} ${hdrs})
target_link_libraries(${test} ${include} gtest)
set_target_properties(${test} PROPERTIES FOLDER table/${nameBaseProj})
add_test(${nameBaseProj}_gtest ${CMAKE_BINARY_DIR}/bin/${test})
#add_test(${nameBaseProj}_gtest ${CMAKE_BINARY_DIR}/bin/${test})
4 changes: 4 additions & 0 deletions table/VectorTable/test/test_vectorTable.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#include <gtest.h>
#include "VectorTable.h"
using namespace std;

TEST(VectorTable, test1) {
SUCCEED();
}
Loading