-
Notifications
You must be signed in to change notification settings - Fork 727
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Re-enabling mate on failure - Use windows default shell - split up win setup - harmonize ghc install - tmate on failure only - PKG_CONFIG_PATH mutilation on unixy things only with export - fix cache store path. - missing env var - Add openssl to windows - be more declarative - Add LD_LIBRARY_PATH during the build.
- Loading branch information
Showing
3 changed files
with
154 additions
and
135 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,18 @@ | ||
#!/bin/bash | ||
# I don't understand why this just vanishes. | ||
export PATH=/usr/bin:$PATH | ||
|
||
echo ======== env ======= | ||
env | grep CI_ | ||
echo ======== | ||
echo $PATH | ||
echo ======== | ||
git clone https://github.com/bitcoin-core/secp256k1 | ||
cd secp256k1 | ||
git switch $SECP256K1_REF --detach | ||
./autogen.sh | ||
./configure $CI_SECP_FLAGS --enable-module-schnorrsig --enable-experimental | ||
make | ||
make check | ||
$CI_SECP_INSTALL_CMD make install | ||
cd .. |
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
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