~repos /rust-embed
git clone https://pyrossh.dev/repos/rust-embed.git
rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
afca7d59
—
pyros2097 7 years ago
Create .travis.yml
- .travis.yml +22 -0
.travis.yml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
language: rust
|
|
2
|
+
sudo: false
|
|
3
|
+
dist: trusty
|
|
4
|
+
|
|
5
|
+
cache:
|
|
6
|
+
cargo: true
|
|
7
|
+
|
|
8
|
+
matrix:
|
|
9
|
+
include:
|
|
10
|
+
- rust: 1.21.0
|
|
11
|
+
- rust: stable
|
|
12
|
+
- rust: beta
|
|
13
|
+
- rust: nightly
|
|
14
|
+
allow_failures:
|
|
15
|
+
- rust: nightly
|
|
16
|
+
- rust: beta
|
|
17
|
+
|
|
18
|
+
script:
|
|
19
|
+
- |
|
|
20
|
+
cargo clean
|
|
21
|
+
cargo test --lib -- --nocapture
|
|
22
|
+
cargo test --lib --release -- --nocapture
|