Skip to content

Commit

Permalink
Add some testing goodies
Browse files Browse the repository at this point in the history
  • Loading branch information
akashlevy committed Sep 9, 2024
1 parent c7700b4 commit 2d47fbd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: tests
on: [push]

jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [centos7, ubuntu_18.04]

runs-on: [ubuntu-24.04]
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- run: |
cp Dockerfile.${{ matrix.os }} Dockerfile
docker build --tag sta-${{ matrix.os }} .
- run: |
docker run --entrypoint "/OpenSTA/test/regression && cat /OpenSTA/test/results/diffs" --tty --rm sta-${{ matrix.os }}
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"

0 comments on commit 2d47fbd

Please sign in to comment.