Update dependency: deps/k_release #310
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: 'Test PR' | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-pr: | |
name: 'Build and test Blockchain Plugin' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Check out code' | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: 'Set up Docker' | |
uses: ./.github/actions/with-docker | |
with: | |
tag: blockchain-k-plugin-concrete-${{ github.sha }} | |
distro: jammy | |
llvm-version: 14 | |
- name: 'Compile Deps' | |
run: docker exec -t blockchain-k-plugin-concrete-${GITHUB_SHA} /bin/bash -c 'make -j`nproc` CXX=clang++-14 libff libcryptopp libsecp256k1' | |
- name: 'Compile' | |
run: docker exec -t blockchain-k-plugin-concrete-${GITHUB_SHA} /bin/bash -c 'make -j`nproc` CXX=clang++-14' | |
- name: 'Test' | |
run: docker exec -t blockchain-k-plugin-concrete-${GITHUB_SHA} /bin/bash -c 'make -j`nproc` -C tests' | |
- name: 'Tear down Docker' | |
if: always() | |
run: | | |
docker stop --time=0 blockchain-k-plugin-concrete-${GITHUB_SHA} |