emit_subalign option (#402) #578
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
name: unit_tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get install -y build-essential make binutils-mips-linux-gnu python3 python3-pip wget | |
- name: Install Python dependencies | |
run: python3 -m pip install -U -r requirements.txt | |
- name: Build basic_app | |
run: | | |
make -C test/basic_app clean | |
make -C test/basic_app download_kmc | |
make -C test/basic_app all | |
- name: Run the test | |
run: python3 test.py |