-
Notifications
You must be signed in to change notification settings - Fork 26
48 lines (48 loc) · 1.26 KB
/
gh_actions_ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: GitHub CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
osx_10_15:
runs-on: macos-10.15
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_osx.sh
bionic_gcc7_conda_asan:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_bionic_gcc7_conda_asan.sh
bionic_gcc7_conda_ubsan:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_bionic_gcc7_conda_ubsan.sh
focal_clang9_conda_tsan:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_focal_clang9_conda_tsan.sh
focal_clang9_debuggmp:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_focal_clang9_debuggmp.sh
binder_cache:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: cache binder build on mybinder.org
uses: jupyterhub/repo2docker-action@master
with:
NO_PUSH: true
MYBINDERORG_TAG: ${{ github.event.ref }} # This builds the container on mybinder.org with the branch that was pushed on.