Skip to content

Add

Add #2

Workflow file for this run

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 --tty --rm sta-${{ matrix.os }} /bin/bash -c "/OpenSTA/test/regression; cat /OpenSTA/test/results/diffs"