diff options
author | MITSUNARI Shigeo <[email protected]> | 2021-03-04 17:21:43 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2021-03-04 17:21:43 +0900 |
commit | 396715a894a18d3809890cff585e3214fbc24f39 (patch) | |
tree | fad2ede142d9c2f86da69ee78157cdff04845052 | |
parent | 69a25fd929c846d6fb70bf945223a9e883ae8548 (diff) | |
download | xbyak-396715a894a18d3809890cff585e3214fbc24f39.tar.gz xbyak-396715a894a18d3809890cff585e3214fbc24f39.zip |
use github action
-rw-r--r-- | .github/workflows/main.yml | 11 | ||||
-rw-r--r-- | .travis.yml | 12 | ||||
-rw-r--r-- | readme.md | 2 |
3 files changed, 12 insertions, 13 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3fad142 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: test +on: [push] + +jobs: + build: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: sudo apt install nasm yasm g++-multilib tcsh + - run: make test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4de8772..0000000 --- a/.travis.yml +++ /dev/null @@ -1,12 +0,0 @@ -sudo: true -dist: bionic -language: cpp -compiler: - - gcc - - clang -addons: - apt: - packages: - - nasm yasm g++-multilib tcsh -script: - - make test @@ -1,4 +1,4 @@ -[![Build Status](https://api.travis-ci.com/herumi/xbyak.svg?branch=master)](https://travis-ci.com/github/herumi/xbyak) +[![Build Status](https://github.com/herumi/xbyak/actions/workflows/main.yml/badge.svg)](https://github.com/herumi/xbyak/actions/workflows/main.yml) # Xbyak 5.991 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ |