Skip to content

Update regs dictionary; Remove LIB. #43

Update regs dictionary; Remove LIB.

Update regs dictionary; Remove LIB. #43

Workflow file for this run

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'