Add sequence diagram to README to help explain build-bom operation #304
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
on: [push, pull_request, pull_request_target] | |
name: build | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
- name: install test deps | |
run: sudo apt install clang-12 llvm-12 wget | |
- name: test | |
# Note: individual tests will change directory to run in specific | |
# locations, so they must be run consecutively (--test-threads=1). | |
run: CLANG=clang-12 LLVM_LINK=llvm-link-12 LLVM_DIS=llvm-dis-12 cargo test -- --test-threads=1 |