Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: tests
on: [push]

jobs:
macos:
runs-on: [macos-14]
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- run: brew bundle
- run: |
cmake -S . -B build

cd build
make
sudo make install
- run: |
cd test
./regression || {
[ -f results/diffs ] && cat results/diffs
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ doc/._Sta.docx
test/results
# ngspice turd
test/b3v3_1check.log

Brewfile.lock.json
9 changes: 9 additions & 0 deletions Brewfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
brew "bison"
brew "cmake"
brew "eigen"
brew "flex"
brew "swig"
brew "tcl-tk"

tap "mht208/formal"
brew "mht208/formal/cudd"