Skip to content

weird makefile stuff #3

weird makefile stuff

weird makefile stuff #3

Workflow file for this run

name: Test rv32i
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
component: [
test_sample,
test_muxes_all,
test_decoders_all,
test_shifters_all,
test_comparators_all,
test_adders_all,
test_alu_all,
test_register_file_all,
test_rv32_all]
steps:
- uses: actions/checkout@v3
- name: Install Tool Chain
run: |
sudo apt-get update

Check failure on line 29 in .github/workflows/test-rv32i.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-rv32i.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
sudo apt-get upgrade
sudo apt-get install -y gcc make iverilog
- name: Run Tests
run: |
cd src/components
make ${{ matrix.component }}