-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (46 loc) · 1.34 KB
/
main.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
49
name: CI
on:
push:
pull_request:
schedule:
- cron: '5 4 * * 2' # once a week on Tuesday
jobs:
format:
name: Format
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v1
- run: CHECK_FORMAT=1 ./format.sh
legion:
name: Legion (DEBUG=${{ matrix.debug }}, NETWORKS=${{ matrix.networks }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-22.04'] # 'macos-11' # FIXME: macOS is broken: https://github.com/StanfordLegion/legion/issues/213
debug: ['1', '0']
networks: ['', 'mpi']
steps:
- uses: actions/checkout@v1
- run: ./test.sh
env:
DEBUG: ${{ matrix.debug }}
LEGION_NETWORKS: ${{ matrix.networks }}
INSTALL_DEPS: '1'
SUDO_COMMAND: sudo
regent:
name: Regent (DEBUG=${{ matrix.debug }}, NETWORKS=${{ matrix.networks }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-22.04'] # 'macos-11' # FIXME: macOS is broken: https://github.com/StanfordLegion/legion/issues/213
debug: ['1', '0']
#networks: ['', 'mpi']
steps:
- uses: actions/checkout@v1
- run: ./test.sh
env:
DEBUG: ${{ matrix.debug }}
LEGION_NETWORKS: ${{ matrix.networks }}
USE_REGENT: '1'
INSTALL_DEPS: '1'
SUDO_COMMAND: sudo