Kind-of found the problem with emplace_hint() #880
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: Bazel build | |
on: [ push ] | |
jobs: | |
build: | |
name: Run bazel | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup bazel | |
uses: bazelbuild/setup-bazelisk@v2 | |
# This causes build failures | |
# - name: Mount bazel cache # Optional | |
# uses: actions/cache@v3 | |
# with: | |
# path: "~/.cache/bazel" | |
# key: bazel | |
- name: Clang format | |
shell: bash | |
run: ./ci/linting/clang-format.sh | |
- name: Bazel format | |
shell: bash | |
run: ./ci/linting/buildifier.sh | |
- name: Build | |
shell: bash | |
run: bazel build ... | |
- name: Test | |
shell: bash | |
run: bazel test ... | |
- name: Test | |
shell: bash | |
run: bazel test //test:phtree_test --config=asan |