2022-09-09 23:41:47 -04:00
|
|
|
name: make
|
2022-08-27 13:03:54 -04:00
|
|
|
|
|
|
|
# Build on every branch push, tag push, and pull request change:
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-12-15 16:06:48 -03:00
|
|
|
build_repo:
|
2023-04-30 08:48:47 -04:00
|
|
|
name: Build repo and run tests
|
2022-08-27 13:03:54 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-12-15 16:06:48 -03:00
|
|
|
- name: Checkout reposistory
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-08-27 13:03:54 -04:00
|
|
|
- name: make
|
2022-12-15 16:07:50 -03:00
|
|
|
run: make -j $(nproc) WERROR=1
|
2022-12-15 16:06:48 -03:00
|
|
|
|
2023-02-23 13:50:05 -03:00
|
|
|
- name: Run build info checks
|
|
|
|
run: ./tests/run_build_info_checks.sh
|
|
|
|
|
2022-12-15 16:06:48 -03:00
|
|
|
- name: Run logic checks
|
2022-12-19 12:20:32 -03:00
|
|
|
run: ./tests/run_logic_checks.sh
|
|
|
|
|
|
|
|
- name: Run instruction checks
|
|
|
|
run: ./tests/run_instruction_checks.sh
|