forked from ElementsProject/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'src/univalue/' changes from 98fadc0909..a44caf65fe
a44caf65fe Merge bitcoin-core/univalue-subtree#28: Import fixes for sanitizer reported issues 135254331e Import fixes for sanitizer reported issues d5fb86940e refactor: use c++11 range based for loop in checkObject ff9c379304 refactor: Use nullptr (c++11) instead of NULL 08a99754d5 build: use ax_cxx_compile_stdcxx.m4 to check for C++11 support 66d3713ce7 Merge bitcoin-core/univalue-subtree#29: ci: travis -> cirrus 808d487292 ci: travis -> cirrus c390ac375f Merge bitcoin-core/univalue-subtree#19: Split sources for easier buildsystem integration 4a5b0a1c65 build: Move source entries out to sources.mk 6c7d94b33c build: cleanup wonky gen usage a222637c6d Merge ElementsProject#23: Merge changes from jgarzik/univalue@1ae6a23 f77d0f718d Merge commit '1ae6a231a0169938eb3972c1d48dd17cba5947e1' into HEAD 1ae6a231a0 Merge pull request ElementsProject#57 from MarcoFalke/test_fix 92bdd11f0b univalue_write: remove unneeded sstream.h include ffb621c130 Merge pull request ElementsProject#56 from drodil/remove_sstream_header f33acf9fe8 Merge commit '7890db9~' into HEAD 66e0adec4d Remove unnecessary sstream header from univalue.h 88967f6586 Version 1.0.4 1dc113dbef Merge pull request ElementsProject#50 from luke-jr/pushKV_bool 72392fb227 [tests] test pushKV for boolean values c23132bcf4 Pushing boolean value to univalue correctly 81faab26a1 Merge pull request ElementsProject#48 from fwolfst/47-UPDATE_MIT_LINK_TO_HTTPS b17634ef24 Update URLs to MIT license. 88ab64f6b5 Merge pull request ElementsProject#46 from jasonbcox/master 35ed96da31 Merge pull request ElementsProject#44 from MarcoFalke/Mf1709-univalue-cherrypick-explicit 420c226290 Merge pull request ElementsProject#45 from MarcoFalke/Mf1710-univalue-revert-test git-subtree-dir: src/univalue git-subtree-split: a44caf65fe55b9dd8ddb08f04c0f70409efd53b3
- Loading branch information
Showing
16 changed files
with
1,369 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
env: | ||
MAKEJOBS: "-j4" | ||
RUN_TESTS: "true" | ||
BASE_OUTDIR: "$CIRRUS_WORKING_DIR/out_dir_base" | ||
DEBIAN_FRONTEND: "noninteractive" | ||
|
||
task: | ||
container: | ||
image: ubuntu:focal | ||
cpu: 1 | ||
memory: 1G | ||
greedy: true # https://medium.com/cirruslabs/introducing-greedy-container-instances-29aad06dc2b4 | ||
|
||
matrix: | ||
- name: "gcc" | ||
env: | ||
CC: "gcc" | ||
CXX: "g++" | ||
APT_PKGS: "gcc" | ||
- name: "clang" | ||
env: | ||
CC: "clang" | ||
CXX: "clang++" | ||
APT_PKGS: "clang" | ||
- name: "mingw" | ||
env: | ||
CC: "" | ||
CXX: "" | ||
UNIVALUE_CONFIG: "--host=x86_64-w64-mingw32" | ||
APT_PKGS: "g++-mingw-w64-x86-64 gcc-mingw-w64-x86-64 binutils-mingw-w64-x86-64" | ||
RUN_TESTS: "false" | ||
|
||
install_script: | ||
- apt update | ||
- apt install -y pkg-config build-essential libtool autotools-dev automake bsdmainutils | ||
- apt install -y $APT_PKGS | ||
autogen_script: | ||
- ./autogen.sh | ||
configure_script: | ||
- ./configure --cache-file=config.cache --bindir=$BASE_OUTDIR/bin --libdir=$BASE_OUTDIR/lib $UNIVALUE_CONFIG | ||
make_script: | ||
- make $MAKEJOBS V=1 | ||
test_script: | ||
- if [ "$RUN_TESTS" = "true" ]; then make $MAKEJOBS distcheck; fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.