Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Konrad1991 committed May 27, 2024
1 parent 8efbf73 commit bdfef3a
Show file tree
Hide file tree
Showing 18 changed files with 26 additions and 1,085 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,32 @@ jobs:
- name: configure
run: |
cd ./tests/
g++ BaseStore_Tests.cpp -std=c++20
g++ BaseStore_Tests.cpp -std=c++20 -o BaseStore_Tests
g++ BinaryOperations_Tests.cpp -std=c++20 -o BinaryOperations_Tests
g++ CocaTests.cpp -std=c++20 -o CocaTests
g++ Colon_Tests.cpp -std=c++20 -o Colon_Tests
g++ Concepts_Test.cpp -std=c++20 -o Concepts_Tests
g++ Derivatives_Tests.cpp -std=c++20 -o Derivatives_Tests
g++ Helper_Tests.cpp -std=c++20 -o Helper_Tests
g++ Matrix_Tests.cpp -std=c++20 -o Matrix_Tests
g++ Rep_Tests.cpp -std=c++20 -o Rep_Tests
g++ Subsetting_Tests.cpp -std=c++20 -o Subsetting_Tests
g++ Unary_Tests.cpp -std=c++20 -o Unary_Tests
g++ Vector_Tests.cpp -std=c++20 -o Vector_Tests
- name: Run tests
run: |
cd ./tests/
./a.out
./BaseStore_Tests
./BinaryOperations_Tests
./CocaTests
./Colon_Tests
./Concepts_Tests
./Derivatives_Tests
./Helper_Tests
./Matrix_Tests
./Rep_Tests
./Subsetting_Tests
./Unary_Tests
./Vector_Tests
2 changes: 0 additions & 2 deletions tests/BaseStore_Tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,5 @@ int main(int argc, char *argv[]) {
for (int i = 0; i < 10000000; i++) {
v.push_back(i);
}
throw;

return 0;
}
Binary file removed tests/build/BaseStore_Tests
Binary file not shown.
Binary file removed tests/build/BinaryOperations_Tests
Binary file not shown.
Loading

0 comments on commit bdfef3a

Please sign in to comment.