Skip to content

Commit

Permalink
release 5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rkaminsk committed Sep 11, 2022
1 parent ec38727 commit d88141f
Show file tree
Hide file tree
Showing 738 changed files with 248,144 additions and 6,556 deletions.
22 changes: 0 additions & 22 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,22 +0,0 @@
[submodule "clasp"]
path = clasp
url = https://github.com/potassco/clasp.git
branch = dev
[submodule "third_party/catch"]
path = third_party/catch
url = ../../catchorg/Catch2.git
[submodule "third_party/ordered-map"]
path = third_party/ordered-map
url = ../../Tessil/ordered-map.git
[submodule "third_party/hopscotch-map"]
path = third_party/hopscotch-map
url = ../../Tessil/hopscotch-map.git
[submodule "third_party/sparse-map"]
path = third_party/sparse-map
url = ../../Tessil/sparse-map.git
[submodule "third_party/optional"]
path = third_party/optional
url = ../../TartanLlama/optional.git
[submodule "third_party/variant"]
path = third_party/variant
url = ../../mpark/variant.git
68 changes: 0 additions & 68 deletions TODO.md

This file was deleted.

1 change: 0 additions & 1 deletion clasp
Submodule clasp deleted from 4c708a
4 changes: 4 additions & 0 deletions clasp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.swp
build*
.vscode*
CMakeLists.txt.user
63 changes: 63 additions & 0 deletions clasp/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
sudo: false
language: cpp
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-4.9
- cmake
- cmake-data
env:
- COMPILER='g++-4.9'
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-5
- cmake
- cmake-data
env:
- COMPILER='g++-5'
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-8
- cmake
- cmake-data
env:
- COMPILER='g++-8'
- os: osx
osx_image: xcode8
env:
- COMPILER='clang++'

install:
- export CMAKE=cmake
- export CXX=$COMPILER
- $CMAKE --version
- $CXX --version
script:
- mkdir $CXX-mt && cd $CXX-mt
- $CMAKE -DCMAKE_CXX_COMPILER=$CXX -DCLASP_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Wall -Wextra" ../
- make -j3 && make test CTEST_OUTPUT_ON_FAILURE=1
- cd ../
- mkdir $CXX-st && cd $CXX-st
- $CMAKE -DCMAKE_CXX_COMPILER=$CXX -DCLASP_BUILD_TESTS=ON -DCLASP_BUILD_WITH_THREADS=OFF -DCMAKE_CXX_FLAGS="-Wall -Wextra" ../
- make -j3 && make test CTEST_OUTPUT_ON_FAILURE=1
- cd ../

Loading

0 comments on commit d88141f

Please sign in to comment.