Skip to content

Commit c22c726

Browse files
authored
Merge pull request #38 from SC-SGS/develop
Preparation for Release v2.0.0
2 parents 60dc96b + 780807d commit c22c726

File tree

444 files changed

+35748
-11732
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

444 files changed

+35748
-11732
lines changed
68.8 KB
Loading

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
branches:
77
- main
8+
- documentation
89
pull_request:
910
branches:
1011
- main
@@ -21,7 +22,6 @@ jobs:
2122
# install dependencies
2223
- name: Dependancies
2324
run: |
24-
echo "deb http://dk.archive.ubuntu.com/ubuntu/ hirsute main universe" | sudo tee -a /etc/apt/sources.list
2525
sudo apt update
2626
sudo apt-get install -y doxygen graphviz
2727
# configure project via CMake

.github/workflows/msvc_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
run: |
1919
mkdir PLSSVM/build
2020
cd PLSSVM/build
21-
cmake -DCMAKE_BUILD_TYPE=Debug -DPLSSVM_TARGET_PLATFORMS="cpu" -DPLSSVM_ENABLE_TESTING=ON -DPLSSVM_GENERATE_TEST_FILE=OFF -DPLSSVM_ENABLE_LTO=OFF -DPLSSVM_ENABLE_ASSERTS=ON..
21+
cmake -DCMAKE_BUILD_TYPE=Debug -DPLSSVM_TARGET_PLATFORMS="cpu" -DPLSSVM_ENABLE_TESTING=ON -DPLSSVM_GENERATE_TEST_FILE=OFF -DPLSSVM_ENABLE_LTO=OFF -DPLSSVM_ENABLE_ASSERTS=ON ..
2222
- name: "Build Step"
2323
run: |
2424
cd PLSSVM/build
2525
cmake --build .
2626
- name: "Test Step"
2727
run: |
2828
cd PLSSVM/build
29-
ctest -C Debug -V
29+
ctest --output-on-failure -C Debug

.gitignore

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ build*/
3939
cmake-build*/
4040
CMakeLists.txt.user
4141
CMakeCache.txt
42+
CMakeSettings.json
4243
CMakeFiles
4344
CMakeScripts
4445
Testing
@@ -52,20 +53,14 @@ CTestTestfile.cmake
5253
# IDEs ================================
5354
.idea/
5455
.vscode/
56+
.vs/
5557

5658

5759
# Project related ================================
58-
59-
# ignore everything in the autogenerated folder, except the README
60-
include/plssvm/backends/autogenerated/*
61-
!include/plssvm/backends/autogenerated/README.md
62-
src/plssvm/backends/autogenerated/*
63-
!src/plssvm/backends/autogenerated/README.md
64-
tests/backends/autogenerated/*
65-
!tests/backends/autogenerated/README.md
66-
6760
# auto-generated version header
6861
include/plssvm/version/version.hpp
62+
# auto-generated git source
63+
src/plssvm/version/git_metadata/git_metadata.cpp
6964

7065
# generated documentation
7166
!docs/
@@ -74,11 +69,12 @@ docs/*
7469
!docs/CMakeLists.txt
7570
!docs/plssvm-train.1.in
7671
!docs/plssvm-predict.1.in
72+
!docs/plssvm-scale.1.in
7773

7874
# data in test folder
7975
!tests/data/
8076
tests/data/*
81-
!tests/data/models/
77+
!tests/data/model/
8278
!tests/data/libsvm/
8379
!tests/data/arff/
84-
!tests/data/predict/
80+
!tests/data/predict/

0 commit comments

Comments
 (0)