* version: bump beta * fix Sha3/keccak256 hash calculation for binaries (#10509) https://github.com/paritytech/parity-ethereum/issues/10495 * verbose flag for cpp tests (#10524) * Initial support sccache for windows build (#10520) * Initial support sccache for win build * show sccache stats * cache paths for shared runners * sccache status is in the script. * removed windows test for now * ethcore: remove eth social and easthub chain configs (#10531) * Fix max_gas (#10537) Fix max_gas * build android with cache, win fixes (#10546) * build android with cache! * windows fixes * windows fixes 2 * windows fixes 3 * windows fixes 4 * windows should have sccache variables in env variables * Update light client harcoded headers (#10547) * kovan #10643457 * ropsten #5296129 * foundation #7460865 * classic #7747585 * indentation * morden #3973121
18 lines
439 B
Bash
Executable File
18 lines
439 B
Bash
Executable File
#!/bin/bash
|
|
echo "________Running test-cpp.sh________"
|
|
set -e # fail on any error
|
|
set -u # treat unset variables as error
|
|
#use nproc `linux only
|
|
THREADS=$(nproc)
|
|
|
|
echo "________Running the C++ example________"
|
|
DIR=parity-clib/examples/cpp/build
|
|
mkdir -p $DIR
|
|
cd $DIR
|
|
cmake ..
|
|
make VERBOSE=1 -j $THREADS
|
|
# Note: we don't try to run the example because it tries to sync Kovan, and we don't want
|
|
# that to happen on CI
|
|
cd -
|
|
rm -rf $DIR
|