Skip to content

Commit

Permalink
ci: added Github Actions build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JaCzekanski committed Nov 6, 2020
1 parent 2e951f0 commit 331e737
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI

on: [push]

jobs:
linux_clang6:
name: "Linux Clang6"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- run: ./.travis/linux/run-container.sh 6

linux_clang8:
name: "Linux Clang8"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- run: ./.travis/linux/run-container.sh 8

android:
name: "Android"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- run: ./.travis/android/run-container.sh

macos:
name: "macOS"
runs-on: macOS-10.15
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- run: ./.travis/macos/install-dependencies.sh
- run: ./.travis/macos/build.sh

# TODO: Add Windows

0 comments on commit 331e737

Please sign in to comment.