Remove printf (moved to LIB); Update if_gen interfaces; Remove iob_lib.vh. #33
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: CI | |
# Set default shell as interactive (source ~/.bashrc) | |
defaults: | |
run: | |
shell: bash -ieo pipefail {0} | |
on: | |
push: | |
branches: | |
- master | |
# Don't forget to require approval for all outside collaborators | |
pull_request: | |
branches: '*' | |
# Allow manual workflow runs | |
workflow_dispatch: | |
# Run only one instance of this workflow at a time | |
# cancel-in-progress: stop running workflow and run the latest instead | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
sim: | |
runs-on: self-hosted | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: sim-test | |
run: nix-shell --run 'make clean && make setup && make -C ../iob_uart16550_V0.10/ sim-test' | |