Update dependency cryptominisat to v5.11.22 #2803
Workflow file for this run
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: Ubuntu | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-opt: | |
name: Build everything | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install bazelisk | |
uses: bazelbuild/setup-bazelisk@v2 | |
- name: Mount bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "~/.cache/bazel" | |
key: bazel-gcc | |
# - run: sudo apt install -y build-essential | |
- run: bazel test -c dbg -s //... | |
coverage: | |
name: Gather coverage metrics | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install bazelisk | |
uses: bazelbuild/setup-bazelisk@v2 | |
- name: Mount bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "~/.cache/bazel" | |
key: bazel-cgcc | |
- name: Print the list of targets | |
run: bazel query --output label_kind //... | |
- run: bazel coverage --instrument_test_targets --collect_code_coverage --test_tag_filters=-fixme --combined_report=lcov --test_output=all //... | |
- uses: codecov/codecov-action@v3 | |
with: | |
directory: ./bazel-out/_coverage | |
clang-dbg: | |
name: clang tests everything | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install bazelisk | |
uses: bazelbuild/setup-bazelisk@v2 | |
- name: Mount bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "~/.cache/bazel" | |
key: bazel-clang | |
# - run: sudo apt install -y build-essential | |
- run: CXX=clang++ CC=clang bazel test -c opt //... | |