[coro_rpc] add attachment/close/get_connection_id for coro_rpc::conte… #802
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 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install newer Clang | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x ./llvm.sh | |
sudo ./llvm.sh 17 | |
- name: Build | |
working-directory: ${{github.workspace}} | |
run: bazel build --action_env=CXX=clang++-17 --action_env=CC=clang-17 ... | |
- name: Test | |
working-directory: ${{github.workspace}} | |
run: bazel test --action_env=CXX=clang++-17 --action_env=CC=clang-17 --test_output=errors ... |