-
Notifications
You must be signed in to change notification settings - Fork 1
/
OscarCI.toml
49 lines (41 loc) · 1.05 KB
/
OscarCI.toml
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
title = "metadata for oscar CI run"
[env]
os = [ "ubuntu-latest", "macos-latest" ]
# 1.6 is done with some extra combinations in include
# also to avoid some weird behaviour by github actions which seems to merge
# the includes with the normal matrix entries
julia-version = [ "~1.10.0-0", "nightly" ]
branches = [ "release", "<matching>" ]
[pkgs]
[pkgs.Polymake]
test = true
testoptions = []
# will not add it to the matrix but enable testing for includes
[pkgs.Oscar]
test = true
branches = []
[include]
[include.master]
Polymake = "master"
Oscar = "master"
julia-version = "1.10"
os = "ubuntu-latest"
[include.lts]
Polymake = "<matching>"
julia-version = "1.6"
os = "ubuntu-latest"
[include.oscar]
Oscar = "<matching>"
Polymake = "<matching>"
julia-version = "1.10"
os = "ubuntu-latest"
[include.oscarmac]
Oscar = "<matching>"
Polymake = "<matching>"
julia-version = "1.10"
os = "macos-latest"
[include.oscarstable]
Oscar = "release"
Polymake = "release"
julia-version = "1.10"
os = "ubuntu-latest"