-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
59 lines (51 loc) · 1.31 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
56
57
58
59
# Only build the master branch.
branches:
only:
- master
language: rust
rust:
- nightly
# matrix:
# allow_failures:
# - rust: nightly
# Caching Haskell stuff so the next build will be fast too.
cache:
directories:
- $HOME/.stack
# Ensure necessary system libraries are present
addons:
apt:
packages:
- libgmp-dev
before_install:
# Download and unpack the stack executable, then install ohuac and continue
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
- git clone https://github.com/ohua-dev/ohuac.git ~/ohuac
- cd ~/ohuac
- git checkout v0.2.0
- stack --no-terminal install
- cd -
- cargo install sccache
- export RUSTC_WRAPPER=sccache
# run the normal build with tests
script:
- cargo build
- cargo test
- cd testcases/
- cargo test
before_deploy:
- mkdir deploy
- tar -cf deploy/quickstart-$TRAVIS_OS_NAME.tar.gz `stack exec -- which ohuac` example/*
- zip deploy/quickstart-$TRAVIS_OS_NAME.zip `stack exec -- which ohuac` example/*
deploy:
provider: releases
# not entirely sure this is needed, but to be on the safe side ...
skip_cleanup: true
file_glob: true
file:
- deploy/*
on:
repo: ohua-dev/ohuac
tags: true