Skip to content

Commit 26edea3

Browse files
authored
Introduce TravisCI. (#15)
* Introduce TravisCI, build for x86_64-unknown-linux-{musl, gnu}.
1 parent a03b4ae commit 26edea3

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: rust
2+
3+
matrix:
4+
include:
5+
- rust: 1.30.0
6+
- rust: stable
7+
- rust: beta
8+
- rust: nightly
9+
env: ALLOW_FAILURES=true
10+
- os: osx
11+
- env: TARGET=x86_64-unknown-linux-musl
12+
- env: TARGET=x86_64-unknown-linux-gnu
13+
script:
14+
- cargo build --verbose --all
15+
- cargo test --verbose --all

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Rust Runtime for AWS Lambda
22

3+
[![Build Status](https://travis-ci.org/awslabs/aws-lambda-rust-runtime.svg?branch=master)](https://travis-ci.org/awslabs/aws-lambda-rust-runtime)
4+
35
This package makes it easy to run AWS Lambda Functions written in Rust. This workspace includes two crates:
46

57
* **`lambda-runtime-client`** is a client SDK for the Lambda Runtime APIs. You probably don't need to use this crate directly!

lambda-runtime/tests/skeptic.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)