-
Notifications
You must be signed in to change notification settings - Fork 15
/
.travis.yml
45 lines (45 loc) · 1.2 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
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Not really necessary, just to get a green badge on “master”
- master
language: rust
os: linux
dist: xenial
addons:
apt:
sources:
- sourceline: "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-11 main"
key_url: "https://apt.llvm.org/llvm-snapshot.gpg.key"
packages:
- llvm-3.9-dev
- libclang-3.9-dev
- clang-3.9
- clang-11
- cmake
- qemu-user
rust:
- stable
env:
jobs:
# Matrix build of 3 targets against Rust stable
- TARGET=x86_64-unknown-linux-gnu ZLIB_INSTALLED=true AES_NI_SUPPORT=true
- TARGET=aarch64-unknown-linux-musl
- TARGET=x86_64-fortanix-unknown-sgx
global:
- RUST_BACKTRACE=1
# Pinned to this particular nightly version because of core_io. This can be
# re-pinned whenever core_io is updated to the latest nightly.
- CORE_IO_NIGHTLY=nightly-2021-03-25
- LLVM_CONFIG_PATH=llvm-config-3.9
jobs:
include:
# Test additional Rust toolchains on x86_64
- rust: beta
- rust: nightly
- rust: nightly-2021-03-25
script:
- ./ct.sh