-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (39 loc) · 1023 Bytes
/
action.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
name: Run tests
on:
push:
branches:
- master
- develop
pull_request:
types: [opened, synchronize, reopened]
jobs:
test-github-cpuonly:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.5','1.6']
julia-arch: [x64]
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
test-moonshot:
env:
CUDA_VISIBLE_DEVICES: 1
runs-on: self-hosted
strategy:
matrix:
julia-version: ['1.5','1.6.0-rc2']
julia-arch: [x64]
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest