~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.
c329b109
—
Mcat12 7 years ago
Make each CI command separate
- .travis.yml +4 -5
.travis.yml
CHANGED
|
@@ -13,8 +13,7 @@ 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 --release --example basic
|