diff options
author | MITSUNARI Shigeo <[email protected]> | 2020-01-03 22:16:30 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2020-01-03 22:32:12 +0900 |
commit | 00114d7916b5607983c63af8753e9c0426e14671 (patch) | |
tree | 7723a90ad559853585ec3c81b07b11f989c4494c | |
parent | a29fa27b926813908a791848329a4fea68c28018 (diff) | |
download | xbyak-00114d7916b5607983c63af8753e9c0426e14671.tar.gz xbyak-00114d7916b5607983c63af8753e9c0426e14671.zip |
add .travis.ymlv5.89
-rw-r--r-- | .travis.yml | 12 | ||||
-rw-r--r-- | readme.md | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4de8772 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +sudo: true +dist: bionic +language: cpp +compiler: + - gcc + - clang +addons: + apt: + packages: + - nasm yasm g++-multilib tcsh +script: + - make test @@ -1,3 +1,4 @@ +[![Build Status](https://travis-ci.org/herumi/xbyak.png)](https://travis-ci.org/herumi/xbyak) # Xbyak 5.89 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ |