Skip to content

Commit

Permalink
prepare release 5.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rkaminsk committed Sep 16, 2022
1 parent 24c84b7 commit fff0dca
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

This file was deleted.

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 fff0dca

Please sign in to comment.