summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2019-11-22 15:26:21 -0800
committerGitHub <noreply@github.com>2019-11-22 15:26:21 -0800
commit2d1e5a0246d5b2e806ea029ec045ee6f23cf6c78 (patch)
tree02d8d797f5dd469960633acdf3a40c2acb5b56f2 /.github
parent5e81015f69262657186b3f3bf03bfa28016c5a0d (diff)
downloadwabt-2d1e5a0246d5b2e806ea029ec045ee6f23cf6c78.tar.gz
wabt-2d1e5a0246d5b2e806ea029ec045ee6f23cf6c78.tar.bz2
wabt-2d1e5a0246d5b2e806ea029ec045ee6f23cf6c78.zip
Initial support for github actions (#1238)
This adds a basic workflow that builds and tests wabt on all three desktop platforms. The plan is to extend this to completely replace travis and appveyor in the future. Remove the 2.7 requirement for python in CMakeLists.txt due to issue with github actions where this ends up selected in the wrong (mingw) version of python. See: https://github.com/actions/setup-python/issues/40
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..23656c4f
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,27 @@
+name: CI
+
+on: [pull_request]
+
+jobs:
+ build:
+ name: Build
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os: [ubuntu-16.04, macos-latest, windows-latest]
+ steps:
+ - uses: actions/setup-python@v1
+ with:
+ python-version: '2.7'
+ - uses: actions/checkout@v1
+ with:
+ submodules: true
+ - name: mkdir
+ run: mkdir -p out
+ - name: cmake
+ run: cmake ..
+ working-directory: out
+ - name: build
+ run: cmake --build out
+ - name: test
+ run: cmake --build out --target run-tests