Skip to content

Commit

Permalink
need to add the 1.0 tag to dockerfile (no latest)
Browse files Browse the repository at this point in the history
  • Loading branch information
jifalops committed Mar 1, 2024
1 parent a5f1797 commit cc1e871
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM jifalops/rust
FROM jifalops/rust:1.0
3 changes: 1 addition & 2 deletions coverage.sh
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
6 changes: 1 addition & 5 deletions doc.sh
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/
2 changes: 1 addition & 1 deletion test.sh
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

0 comments on commit cc1e871

Please sign in to comment.