@@ -0,0 +1,43 @@
+name: CI
+
+on:
+ push:
+ paths-ignore:
+ - '**.md'
+ pull_request:
+jobs:
+ build-linux:
+ name: build-linux
+ runs-on: ubuntu-latest
+ steps:
+ - name: build
+ uses: actions/checkout@v2
+ run: |
+ ./configure
+ make libhv examples unittest evpp
+ build-macos:
+ name: build-macos
+ runs-on: macos-latest
+ build-windows:
+ name: build-windows
+ runs-on: windows-2016
+ mkdir win64
+ cd win64
+ cmake .. -G "Visual Studio 15 2017 Win64"
+ cmake --build .
@@ -8,15 +8,13 @@ jobs:
env: COVERALLS=no
script:
- ./configure
- - make clean
- make libhv examples unittest evpp
- os: osx
compiler: clang
- scrit:
+ script:
- os: windows