Try to fix test-bitcoin.sh #17
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
name: C/C++ CI | |
on: | |
push: | |
branches: [ "llvm-14.0.6" ] | |
pull_request: | |
branches: [ "llvm-14.0.6" ] | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ninja-build | |
run: sudo apt install ninja-build -y | |
- name: Install z3 | |
run: sudo apt install libz3-dev -y | |
- name: Install bitcoin dependencies | |
run: sudo apt install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3 libevent-dev libboost-dev -y | |
- name: git submodule update --init | |
run: git submodule update --init | |
- name: make install | |
run: make install | |
- name: Test tiny-aes | |
run: ./tests/test-aes.sh | |
- name: Test jsoncpp | |
run: ./tests/test-jsoncpp.sh | |
- name: Test openssl | |
run: ./tests/test-openssl.sh | |
- name: Test bitcoin | |
run: ./tests/test-bitcoin.sh | |
# Windows: | |
# runs-on: windows-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: sudo apt install ninja-build -y | |
# run: sudo apt install ninja-build -y | |
# - name: git submodule update --init --recursive | |
# run: git submodule update --init --recursive | |
# - name: make build | |
# run: make build | |
# - name: make install | |
# run: make install | |
# - name: make check | |
# run: make check |