Skip to content

Commit

Permalink
Migrate CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fstirlitz committed Oct 3, 2021
1 parent 3a81150 commit c59229d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 10 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: |
./autogen.sh
./configure CFLAGS='-g -Og -fsanitize=address -fsanitize=undefined -fno-sanitize-recover=all' LDFLAGS='-fsanitize=address -fsanitize=undefined -fno-sanitize-recover=all'
make all
- name: Run tests
run: |
python3 ./travis/nasm-t.py run
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit c59229d

Please sign in to comment.