Skip to content

Commit 44da8d0

Browse files
bors[bot]mzohrevazugzwangTaowyoo
authored
Merge #127
127: Async I/O support + ALPN r=Taowyoo a=mzohreva Co-authored-by: Mohsen Zohrevandi <[email protected]> Co-authored-by: francisco <[email protected]> Co-authored-by: Yuxiang Cao <[email protected]> Co-authored-by: bors[bot] <26634292+bors[bot]@users.noreply.github.com>
2 parents e9a14e4 + ae32aa4 commit 44da8d0

22 files changed

+1805
-700
lines changed

.travis.yml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,32 @@ branches:
88
- master
99
language: rust
1010
os: linux
11-
dist: xenial
11+
dist: focal
1212
addons:
1313
apt:
14+
sources:
15+
- sourceline: "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main"
16+
key_url: "https://apt.llvm.org/llvm-snapshot.gpg.key"
1417
packages:
15-
- llvm-3.8-dev
16-
- libclang-3.8-dev
17-
- clang-3.8
18+
- clang-11
1819
- cmake
1920
rust:
2021
- stable
21-
- beta
22-
- nightly
23-
- nightly-2019-07-01
24-
- nightly-2019-10-28
2522
env:
23+
jobs:
24+
# Matrix build of 3 targets against Rust stable
25+
- TARGET=x86_64-unknown-linux-gnu ZLIB_INSTALLED=true AES_NI_SUPPORT=true
26+
- TARGET=x86_64-fortanix-unknown-sgx
2627
global:
2728
- RUST_BACKTRACE=1
2829
# Pinned to this particular nightly version because of core_io. This can be
2930
# re-pinned whenever core_io is updated to the latest nightly.
30-
- CORE_IO_NIGHTLY=nightly-2019-07-01
31-
- SGX_NIGHTLY=nightly-2019-10-28
32-
- LLVM_CONFIG_PATH=llvm-config-3.8
31+
- CORE_IO_NIGHTLY=nightly-2021-03-25
32+
jobs:
33+
include:
34+
# Test additional Rust toolchains on x86_64
35+
- rust: beta
36+
- rust: nightly
37+
- rust: nightly-2021-03-25
3338
script:
3439
- ./ct.sh

0 commit comments

Comments
 (0)