-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (45 loc) · 1.69 KB
/
.travis.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
50
language: julia
allow_failures:
- julia: nightly
notifications:
email: false
matrix:
include:
- os: linux
julia:
- 1.0
- os: linux
julia:
- 1.1
after_success:
- julia --project=. -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
- os: linux
julia:
- 1.2
- os: linux
julia:
- nightly
- os: osx
julia:
- 1.1
- os: windows
language: shell
before_install:
- choco install julia
script:
- TEST=SysTests RELIC_TOOLKIT_CURVE=BLS381 julia --compiled-modules=no -e 'import Pkg; Pkg.activate("."); Pkg.build(); Pkg.test(coverage=true)'
- TEST=UnitTests RELIC_TOOLKIT_CURVE=BLS381 julia --compiled-modules=no -e 'import Pkg; Pkg.activate("."); Pkg.build(); Pkg.test(coverage=true)'
- TEST=PerfTests RELIC_TOOLKIT_CURVE=BLS381 julia --compiled-modules=no -e 'import Pkg; Pkg.activate("."); Pkg.build(); Pkg.test()'
- TEST=SysTests RELIC_TOOLKIT_CURVE=BN254 julia --compiled-modules=no -e 'import Pkg; Pkg.activate("."); Pkg.build(); Pkg.test(coverage=true)'
- TEST=UnitTests RELIC_TOOLKIT_CURVE=BN254 julia --compiled-modules=no -e 'import Pkg; Pkg.activate("."); Pkg.build(); Pkg.test(coverage=true)'
- TEST=PerfTests RELIC_TOOLKIT_CURVE=BN254 julia --compiled-modules=no -e 'import Pkg; Pkg.activate("."); Pkg.build(); Pkg.test()'
# jobs:
# include:
# - stage: "Documentation"
# julia: 1.0
# os: linux
# script:
# - julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
# Pkg.develop(PackageSpec(path=pwd()))'
# - julia --project=docs/ docs/make.jl
# after_success: skip