Config finder make target (#1328)

* Add config-finder make target

* Add recursive functionality

* Add config finder to CI

* Workaround bash argument limit failures
This commit is contained in:
Abraham Gonzalez
2023-03-06 14:00:20 -08:00
committed by GitHub
parent 252aa742c3
commit f7a39f80e7
4 changed files with 110 additions and 1 deletions

View File

@@ -81,6 +81,19 @@ jobs:
export MAKEFLAGS="-j32"
./build-setup.sh -f
run-cfg-finder:
name: run-cfg-finder
needs: [setup-repo]
runs-on: ferry
steps:
- name: Run config finder
run: |
cd ${{ env.REMOTE_WORK_DIR }}
eval "$(conda shell.bash hook)"
source env.sh
cd sims/verilator
make find-config-fragments
run-tutorial:
name: run-tutorial
needs: [setup-repo]