Skip to content

Commit d45c6aa

Browse files
committed
Migrate CI to GitHub Actions
1 parent 3a81150 commit d45c6aa

File tree

2 files changed

+23
-10
lines changed

2 files changed

+23
-10
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
name: CI
3+
4+
on:
5+
push:
6+
branches: [ master ]
7+
pull_request:
8+
branches: [ master ]
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+
run: |
23+
python3 ./travis/nasm-t.py run

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)