Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bitcoin-core/secp256k1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9bbf8075c7046b04006840a56d4e27f406fba2b9
Choose a base ref
..
head repository: bitcoin-core/secp256k1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 02dcea1ad9441f857c7768e2b7d304bb19fd2a0c
Choose a head ref
Showing with 2 additions and 10 deletions.
  1. +2 −2 .cirrus.yml
  2. +0 −8 ci/cirrus.sh
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ env:
BENCH: yes
TEST_ITERS:
BENCH_ITERS: 2
MAKEFLAGS: -j1
MAKEFLAGS: -j2

cat_logs_snippet: &CAT_LOGS
always:
@@ -104,7 +104,7 @@ task:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
# Cirrus gives us a fixed number of 12 virtual CPUs. Not that we even have that many jobs at the moment...
MAKEFLAGS: -j12
MAKEFLAGS: -j13
matrix:
<< : *ENV_MATRIX
matrix:
8 changes: 0 additions & 8 deletions ci/cirrus.sh
Original file line number Diff line number Diff line change
@@ -22,8 +22,6 @@ valgrind --version || true
--host="$HOST" $EXTRAFLAGS

# We have set "-j<n>" in MAKEFLAGS.
# Setting n to the number of CPUs is a reasonable value for this library.
# Higher values tend to slow down the tests in make check in certain configurations.
make

# Print information about binaries so that we can see that the architecture is correct
@@ -40,12 +38,6 @@ export SECP256K1_BENCH_ITERS="$BENCH_ITERS"

make "$BUILD"

if [ -n "$WRAPPER_CMD" ]
then
$WRAPPER_CMD ./tests $TEST_ITERS
$WRAPPER_CMD ./exhaustive_tests
fi

if [ "$BENCH" = "yes" ]
then
# Using the local `libtool` because on macOS the system's libtool has nothing to do with GNU libtool