Skip to content

Commit fef6eb7

Browse files
committed
add regression test for ubuntu
1 parent 61b53ce commit fef6eb7

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,22 @@ on:
33
pull_request:
44
push:
55
jobs:
6-
tests:
6+
nix:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
1010
- uses: cachix/install-nix-action@v13
1111
- run: nix-build -A hydraJobs.release
12+
ubuntu:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: get toolchain version
17+
run: |
18+
c++ --version
19+
ld --version
20+
autoconf --version
21+
- run: |
22+
./bootstrap.sh
23+
./configure --with-asan --with-ubsan
24+
make -j$(nproc) check

0 commit comments

Comments
 (0)