Skip to content

Commit

Permalink
Create .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kspalaiologos committed Jan 2, 2021
1 parent 8352d90 commit 099d60e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

matrix:
fast_finish: true
sudo: true
include:
- language: c
script:
- ./configure --with-target=debug && sudo make wsi
- language: c
script:
- ./configure --with-target=release && sudo make wsi
- language: c
script:
- ./configure --with-target=release --enable-jit && sudo make wsi
- language: c
script:
- ./configure --with-target=coverage --enable-jit && sudo make wsi test
after_success:
- bash <(curl -s https://codecov.io/bash)
cache: apt

0 comments on commit 099d60e

Please sign in to comment.