Skip to content

Commit

Permalink
working on ci
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres committed Aug 11, 2024
1 parent 532951c commit 00b0037
Show file tree
Hide file tree
Showing 13 changed files with 289 additions and 209,446 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build PPP
run: cargo build --example ppp --features=serde
- name: Run PPP
run: cargo run --example ppp --features=serde
run: |
cargo build --release --all-features --example ppp
export RUST_LOG=trace
- name: SPP LSQ 1 Day Survey
run: ./target/release/examples/ppp -c tests/survey/spp_lsq_1day.json
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ serde = { version = "1.0", optional = true, default-features = false, features =

[dev-dependencies]
serde_json = "1"
env_logger = "0.11"
flate2 = { version = "1", features = ["zlib"] }
clap = { version = "4", features = ["derive", "color"] }
serde = { version = "1", default-features = false, features = ["derive"] }
Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,23 @@ Examples and more information
They will teach you how to deploy the solver for both applications
* The example programs are entire application, they come with a small CLI. We use them for test and verification purposes.

Deploy the PPP example program by default:
Deploy the PPP example program and run with default options

```bash
cargo run --example ppp --features=serde
cargo build --release --example ppp
./target/release/example/ppp
```

Run the PPP test with this test setup, that verifies for 1 day static navigation,
that we converge very accurately
Or simply:

```bash
cargo run --example ppp --features=serde -- -c tests/static/spp_absolute_1day.json
cargo run --example ppp
```

Run one of our testbench:

```bash
cargo run --exampl ppp -- -c tests/static/spp_absolute_1day.json
```

* [The RINEX Wiki](https://github.com/georust/rinex/wiki) describes extensive application of this framework, at a high level
Expand Down
Binary file modified examples/data/obs.json.gz
Binary file not shown.
Loading

0 comments on commit 00b0037

Please sign in to comment.