Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
926df56d
Unverified
Commit
926df56d
authored
Dec 31, 2021
by
Niels Lohmann
Committed by
GitHub
Dec 31, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🔥
remove Travis CI #3087 (#3233)
parent
1aca6cb9
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
151 deletions
+55
-151
.travis.yml
.travis.yml
+0
-94
README.md
README.md
+55
-57
No files found.
.travis.yml
deleted
100644 → 0
View file @
1aca6cb9
#########################
# project configuration #
#########################
# C++ project
language
:
cpp
dist
:
trusty
sudo
:
required
group
:
edge
################
# build matrix #
################
matrix
:
include
:
# Coverity (only for branch coverity_scan)
-
os
:
linux
compiler
:
clang
before_install
:
echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-certificates.crt
addons
:
apt
:
sources
:
[
'
ubuntu-toolchain-r-test'
,
'
llvm-toolchain-precise-3.6'
]
packages
:
[
'
g++-6'
,
'
clang-3.6'
,
'
ninja-build'
]
coverity_scan
:
project
:
name
:
"
nlohmann/json"
description
:
"
Build
submitted
via
Travis
CI"
notification_email
:
niels.lohmann@gmail.com
build_command_prepend
:
"
mkdir
coverity_build
;
cd
coverity_build
;
cmake
..
;
cd
.."
build_command
:
"
make
-C
coverity_build"
branch_pattern
:
coverity_scan
env
:
-
SPECIAL=coverity
-
COMPILER=clang++-3.6
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
-
secure
:
"
m89SSgE+ASLO38rSKx7MTXK3n5NkP9bIx95jwY71YEiuFzib30PDJ/DifKnXxBjvy/AkCGztErQRk/8ZCvq+4HXozU2knEGnL/RUitvlwbhzfh2D4lmS3BvWBGS3N3NewoPBrRmdcvnT0xjOGXxtZaJ3P74TkB9GBnlz/HmKORA="
# OSX / Clang
-
os
:
osx
osx_image
:
xcode10.2
# Linux / GCC
-
os
:
linux
compiler
:
gcc
env
:
COMPILER=g++-6
addons
:
apt
:
sources
:
[
'
ubuntu-toolchain-r-test'
]
packages
:
[
'
g++-6'
,
'
ninja-build'
]
################
# build script #
################
script
:
# get CMake and Ninja (only for systems with brew - macOS)
-
|
if [[ (-x $(which brew)) ]]; then
brew update
brew install cmake ninja
brew upgrade cmake
cmake --version
fi
# make sure CXX is correctly set
-
if [[ "${COMPILER}" != "" ]]; then export CXX=${COMPILER}; fi
# append CXX_STANDARD to CMAKE_OPTIONS if required
-
CMAKE_OPTIONS+=${CXX_STANDARD:+ -DCMAKE_CXX_STANDARD=$CXX_STANDARD -DCMAKE_CXX_STANDARD_REQUIRED=ON}
# build configuration
-
CMAKE_OPTIONS+=" -DCMAKE_BUILD_TYPE=Release"
# compile and execute unit tests
-
mkdir -p build && cd build
-
cmake .. ${CMAKE_OPTIONS} -DJSON_BuildTests=On -GNinja && cmake --build .
-
ctest --timeout 2700 -V -j
-
cd ..
# check if homebrew works (only checks develop branch)
-
if [ `which brew` ]; then
brew update ;
brew tap nlohmann/json ;
brew install nlohmann_json --HEAD ;
brew test nlohmann_json ;
fi
README.md
View file @
926df56d
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment