File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 7
7
EXT_SECP256K1_CONFIGURE : " --with-secp256k1-config --with-module-recovery --with-module-ecdh --with-module-schnorrsig --with-module-extrakeys"
8
8
jobs :
9
9
test :
10
- runs-on : ubuntu-20 .04
10
+ runs-on : ubuntu-18 .04
11
11
steps :
12
12
- name : Checkout code
13
13
uses : actions/checkout@v2
14
+ - name : Setup PHP
15
+ uses : shivammathur/setup-php@v2
16
+ with :
17
+ php-version : 7.4
14
18
- run : cd /tmp && git clone https://github.com/bitcoin-core/secp256k1.git libsecp256k1 && cd libsecp256k1 && git checkout efad3506a8937162e8010f5839fdf3771dfcf516 && ./autogen.sh && ./configure --enable-tests=no --enable-benchmark=no --enable-experimental --enable-module-ecdh --enable-module-recovery --enable-module-schnorrsig --enable-module-extrakeys && make -j$(nproc) && sudo make install
15
- - run : cd secp256k1 && phpize && ./configure --with-secp256k1-config --with-module-recovery --with-module-ecdh --with-module-schnorrsig --with-module-extrakeys && make -j$(nproc) && sudo make install
19
+ - run : cd secp256k1 && php -v && phpize && ./configure --with-secp256k1-config --with-module-recovery --with-module-ecdh --with-module-schnorrsig --with-module-extrakeys && make -j$(nproc) && sudo make install
16
20
- run : composer update
17
21
- run : travis/verify_stubs.sh
18
22
- run : cd secp256k1/ && REPORT_EXIT_STATUS=1 make test || (find tests/*.log -type f -exec cat {} + ; exit 1) && cd ..
You can’t perform that action at this time.
0 commit comments