-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
55 lines (52 loc) · 1.22 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
51
52
53
54
55
language: python
sudo: required
python:
- "3.6.4"
services:
- docker
install:
- pip install typeguard
- pip install Sphinx
- pip install mypy # for typed_ast
jobs:
include:
- stage: build
name: python build
script:
- make -C build test
- stage: docs
name: docs
script:
- make python-docs
# TODO: get hugo on here.
# -
# name: website
# script:
# - make website
- stage: "test & typecheck"
name: run
script: make run
-
name: checkspec
script: make check
-
name: test typechecked
script: make test
# Typecheck slow specs.
# Kyber is too slow for travis :(
# -
# name: test kyber
# script: make kyber-test
# WOTS is way too slow for travis as well :(
# -
# name: test wots
# script: make wots-test
-
name: test argon2i
script: make argon2i-test
# Run OCaml compiler and FStar compilation in docker.
-
name: compiler
install: skip
script:
- docker run -v $PWD:/home/worker/_hacspec --rm -ti franziskus/hacspec:0.3 /home/worker/_hacspec/docker/travis-compiler/run.sh