We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3774e75 commit 3dddfddCopy full SHA for 3dddfdd
.github/workflows/makefile.yml
@@ -15,6 +15,21 @@ jobs:
15
run: bmake regress
16
- name: Memory check
17
run: bmake valgrind
18
+ ubuntu_fsanitize:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@master
22
+ - name: Install dependencies
23
+ run: sudo apt-get install -y libcurl4-openssl-dev bmake valgrind
24
+ - name: Configure
25
+ run: |
26
+ cat /etc/os-release
27
+ echo "HAVE_SECCOMP_HEADER=0" > configure.local
28
+ ./configure
29
+ echo "CFLAGS += -fsanitize=undefined,address" >> Makefile.configure
30
+ echo "LDFLAGS += -fsanitize=undefined,address" >> Makefile.configure
31
+ - name: Build and test
32
+ run: bmake regress
33
ubuntu_libbsd:
34
runs-on: ubuntu-latest
35
steps:
0 commit comments