-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
need to add the 1.0 tag to dockerfile (no latest)
- Loading branch information
Showing
4 changed files
with
4 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
FROM jifalops/rust | ||
FROM jifalops/rust:1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
set -e | ||
PORT=${1:-8081} | ||
cargo llvm-cov test --html | ||
python3 -m http.server $PORT --directory target/llvm-cov/html | ||
python3 -m http.server --directory target/llvm-cov/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
#!/bin/bash | ||
set -e | ||
PORT=${1:-8080} | ||
cargo doc --no-deps | ||
echo "=================================" | ||
echo "http://localhost:$PORT/cypher_dto" | ||
echo "=================================" | ||
python3 -m http.server $PORT --directory target/doc/ | ||
python3 -m http.server --directory target/doc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
cargo test --doc | ||
cargo test --doc --no-fail-fast | ||
cargo nextest run |