-
Notifications
You must be signed in to change notification settings - Fork 6
59 lines (59 loc) · 1.48 KB
/
Copy pathci-julia-nightly.yml
File metadata and controls
59 lines (59 loc) · 1.48 KB
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
50
51
52
53
54
55
56
57
58
59
name: CI (Julia nightly)
on:
pull_request:
branches:
- main
paths-ignore:
- 'LICENSE.md'
- 'README.md'
- '.github/workflows/TagBot.yml'
push:
tags: '*'
branches:
- main
paths-ignore:
- 'LICENSE.md'
- 'README.md'
- '.github/workflows/TagBot.yml'
jobs:
test-julia-nightly:
timeout-minutes: 30
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# use default arch
exclusive:
- '0'
os:
- ubuntu-latest
- macOS-latest # arm
- windows-latest
threads:
- '5'
version:
# Runs on Julia nightly only.
- 'nightly'
include:
# (exclusive=1, threads=2)
- arch: x64
exclusive: '1'
os: ubuntu-latest
threads: '2'
version: 'nightly'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
JULIA_EXCLUSIVE: ${{ matrix.exclusive }}
JULIA_NUM_THREADS: ${{ matrix.threads }}
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
files: lcov.info