Skip to content

Commit 702ebea

Browse files
Add regession runner to github actions.
1 parent 57f687a commit 702ebea

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci-debug.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI Tests - Debug
2+
3+
on: [pull_request,push]
4+
5+
jobs:
6+
Regression-test:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
ubuntu_ver: [20.04]
14+
15+
name: ubuntu-${{ matrix.ubuntu_ver }}
16+
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
with:
21+
submodules: recursive
22+
23+
- name: Run regression tests
24+
run: |
25+
make AEGIS=1 TRAVIS=1 sure
26+
27+

0 commit comments

Comments
 (0)