Skip to content

update(LIB): automatic addresses #22

update(LIB): automatic addresses

update(LIB): automatic addresses #22

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 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: setup
run: nix-shell --run "make clean && make setup"
- name: sim-test
run: nix-shell --run "make -C ../iob_timer_V*/ sim-test"
- name: sim-clean
run: nix-shell --run "make -C ../iob_timer_V*/ sim-clean"