Skip to content

Commit b3854ad

Browse files
committed
ga - ubuntu 20.04
1 parent 919c7c1 commit b3854ad

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@ env:
77
EXT_SECP256K1_CONFIGURE: "--with-secp256k1-config --with-module-recovery --with-module-ecdh --with-module-schnorrsig --with-module-extrakeys"
88
jobs:
99
test:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-20.04
1111
steps:
1212
- name: Checkout code
1313
uses: actions/checkout@v2
14-
- run: git clone https://github.com/bitcoin-core/secp256k1.git libsecp256k1 && echo $PWD
15-
- run: echo $PWD ; 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
16-
- run: cd secp256k1 && phpize \
17-
&& ./configure --with-secp256k1-config --with-module-recovery --with-module-ecdh --with-module-schnorrsig --with-module-extrakeys \
18-
&& make -j$(nproc) && sudo make install \
19-
&& cd ..
14+
- 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
2016
- run: composer update
2117
- run: travis/verify_stubs.sh
2218
- run: cd secp256k1/ && REPORT_EXIT_STATUS=1 make test || (find tests/*.log -type f -exec cat {} + ; exit 1) && cd ..

0 commit comments

Comments
 (0)