~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.
a9058a11
—
pyros2097 7 years ago
Merge pull request #22 from Mcat12/fix/tests
- .travis.yml +6 -7
.travis.yml
CHANGED
|
@@ -13,10 +13,9 @@ matrix:
|
|
|
13
13
|
- rust: nightly
|
|
14
14
|
|
|
15
15
|
script:
|
|
16
|
-
- |
|
|
17
|
-
|
|
16
|
+
- cargo test --test lib
|
|
18
|
-
|
|
17
|
+
- cargo test --test lib --release
|
|
19
|
-
|
|
18
|
+
- cargo build --example basic
|
|
20
|
-
|
|
19
|
+
- cargo build --example basic --release
|
|
21
|
-
|
|
20
|
+
- cargo build --example actix --features actix
|
|
22
|
-
|
|
21
|
+
- cargo build --example actix --features actix --release
|