-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improving CI scripts - run docrs in the process (#240)
* Improving CI scripts - run docrs in the process * remove debug trace * remove unused variable * add more ci scripts --------- Signed-off-by: Guillaume W. Bres <[email protected]>
- Loading branch information
Showing
13 changed files
with
56 additions
and
136 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
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,6 @@ | ||
debug/ | ||
target/ | ||
logs/ | ||
|
||
test_resources/ | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "crx2rnx" | ||
version = "2.3.3" | ||
version = "2.3.4" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "RINEX data decompressor" | ||
|
@@ -12,4 +12,4 @@ readme = "README.md" | |
|
||
[dependencies] | ||
clap = { version = "4.4.13", features = ["derive", "color"] } | ||
rinex = { path = "../rinex", version = "=0.16.0", features = ["serde"] } | ||
rinex = { path = "../rinex", version = "=0.16.1", features = ["serde"] } |
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,6 +1,6 @@ | ||
[package] | ||
name = "rinex-cli" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "Command line tool parse and analyze RINEX data" | ||
|
@@ -32,8 +32,8 @@ horrorshow = "0.8" | |
clap = { version = "4.4.13", features = ["derive", "color"] } | ||
hifitime = { version = "3.9.0", features = ["serde", "std"] } | ||
gnss-rs = { version = "2.1.3" , features = ["serde"] } | ||
rinex = { path = "../rinex", version = "=0.16.0", features = ["full"] } | ||
rinex-qc = { path = "../rinex-qc", version = "=0.1.13", features = ["serde"] } | ||
rinex = { path = "../rinex", version = "=0.16.1", features = ["full"] } | ||
rinex-qc = { path = "../rinex-qc", version = "=0.1.14", features = ["serde"] } | ||
sp3 = { path = "../sp3", version = "=1.0.8", features = ["serde", "flate2"] } | ||
serde = { version = "1.0", default-features = false, features = ["derive"] } | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "rinex-qc" | ||
version = "0.1.13" | ||
version = "0.1.14" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "RINEX data analysis" | ||
|
@@ -28,7 +28,7 @@ itertools = "0.12.0" | |
statrs = "0.16" | ||
sp3 = { path = "../sp3", version = "=1.0.8", features = ["serde"] } | ||
rinex-qc-traits = { path = "../qc-traits", version = "=0.1.1" } | ||
rinex = { path = "../rinex", version = "=0.16.0", features = ["full"] } | ||
rinex = { path = "../rinex", version = "=0.16.1", features = ["full"] } | ||
gnss-rs = { version = "2.1.3", features = ["serde"] } | ||
|
||
[dev-dependencies] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "rinex" | ||
version = "0.16.0" | ||
version = "0.16.1" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "Package to parse and analyze RINEX data" | ||
|
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
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
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,6 +1,6 @@ | ||
[package] | ||
name = "rnx2crx" | ||
version = "1.2.3" | ||
version = "1.2.4" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "RINEX data compressor" | ||
|
@@ -14,4 +14,4 @@ readme = "README.md" | |
[dependencies] | ||
thiserror = "1" | ||
clap = { version = "4.4.13", features = ["derive", "color"] } | ||
rinex = { path = "../rinex", version = "=0.16.0", features = ["serde"] } | ||
rinex = { path = "../rinex", version = "=0.16.1", features = ["serde"] } |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#! /bin/bash | ||
# Small script to test PPP capabilities across toolbox updates | ||
|
||
# make sure we're in the correct setup | ||
cargo build --all-features -r | ||
|
||
LOGS="logs/ci/ppp" | ||
APP="./target/release/rinex-cli -q" | ||
|
||
PPP_CONTEXT="-f test_resources/CRNX/V3/ESBC00DNK_R_20201770000_01D_30S_MO.crx.gz \ | ||
-f test_resources/NAV/V3/ESBC00DNK_R_20201770000_01D_MN.rnx.gz \ | ||
-f test_resources/CLK/V3/GRG0MGXFIN_20201770000_01D_30S_CLK.CLK.gz \ | ||
-f test_resources/SP3/GRG0MGXFIN_20201770000_01D_15M_ORB.SP3.gz" | ||
|
||
mkdir -p $LOGS | ||
export RUST_LOG=trace | ||
|
||
# Default PPP | GPS | ||
$APP $PPP_CONTEXT -P GPS -p | tee $LOGS/gps_default.logs | ||
# Default PPP + CGGTTS | GPS | ||
$APP $PPP_CONTEXT -P GPS -p --cggtts | tee $LOGS/gps_default_cggtts.logs | ||
# Default PPP | GAL | ||
$APP $PPP_CONTEXT -P GAL -p | tee $LOGS/galileo_default.logs | ||
# Advanced SPP | GPS | ||
$APP $PPP_CONTEXT -P GPS -p -c rinex-cli/config/rtk/gpst_spp_basic.json | tee $LOGS/gps_spp_advanced.logs | ||
# # Advanced SPP | GAL | ||
$APP $PPP_CONTEXT -P GPS -p -c rinex-cli/config/rtk/gst_spp_basic.json | tee $LOGS/galileo_spp_advanced.logs |
This file was deleted.
Oops, something went wrong.
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,4 +1,5 @@ | ||
#! /bin/sh | ||
VERBOSE=$1 | ||
cargo test --features tests | ||
cargo test --all-features | ||
cargo fmt | ||
cargo test -- --nocapture | ||
cargo test --all-features -- --nocapture | ||
./tools/builddoc.sh |
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,6 +1,6 @@ | ||
[package] | ||
name = "ublox-rnx" | ||
version = "0.1.6" | ||
version = "0.1.7" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "Efficient RINEX production from a Ublox GNSS receiver" | ||
|
@@ -22,4 +22,4 @@ serialport = "4.2.0" | |
ublox = "0.4.4" | ||
clap = { version = "4.4.10", features = ["derive", "color"] } | ||
gnss-rs = { version = "2.1.3", features = ["serde"] } | ||
rinex = { path = "../rinex", version = "=0.16.0", features = ["serde", "nav", "obs", "clock"] } | ||
rinex = { path = "../rinex", version = "=0.16.1", features = ["serde", "nav", "obs", "clock"] } |