Change CI to push to cpp-docs branch #175
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: C++ | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
NYXSTONE_LLVM_PREFIX: "/usr/lib/llvm-15/" | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Packages | |
run: sudo apt-get install llvm-15 llvm-15-dev zlib1g-dev libzstd-dev libboost-program-options-dev cppcheck clang-tidy clang-format | |
- name: Code quality - fmt | |
run: ./tool/format.sh check | |
- name: Code quality - cppcheck | |
run: ./tool/static-analysis-cppcheck.sh | |
- name: Code quality - clang-tidy | |
run: ./tool/static-analysis-tidy.sh | |
- name: Build | |
run: mkdir build/ && cd build && cmake .. && make | |
- name: Test | |
run: make test | |
working-directory: build/ | |
- name: cli | |
run: | | |
./nyxstone "mov rax, rbx" && | |
./nyxstone "jmp label" --labels "label=0x1000" | |
working-directory: build/ |