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 3a81150 commit d45c6aaCopy full SHA for d45c6aa
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+
2
+name: CI
3
4
+on:
5
+ push:
6
+ branches: [ master ]
7
+ pull_request:
8
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Build
17
+ run: |
18
+ ./autogen.sh
19
+ ./configure CFLAGS='-g -Og fsanitize=address -fsanitize=undefined -fno-sanitize-recover=all' LDFLAGS='-fsanitize=address -fsanitize=undefined -fno-sanitize-recover=all'
20
+ make all
21
+ - name: Run tests
22
23
+ python3 ./travis/nasm-t.py run
.travis.yml
0 commit comments