Skip to content

Commit

Permalink
Update parquet and re-download data
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Jun 16, 2024
1 parent edada6e commit d1615ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 22 deletions.
27 changes: 7 additions & 20 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,26 +102,6 @@ jobs:
- name: Run cargo clippy
run: cargo clippy -- -D warnings

audit:
name: Security Audit
runs-on: ubuntu-latest
needs: [lints]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable

- name: Install cargo-audit
run: cargo install cargo-audit

- name: Audit code
run: cargo audit

ut-coverage:
name: Coverage (unit tests only)
runs-on: ubuntu-latest
Expand All @@ -137,6 +117,13 @@ jobs:
toolchain: stable
components: rustfmt, clippy

- name: Download data
run: |
wget -O data/de440s.bsp http://public-data.nyxspace.com/anise/de440s.bsp
wget -O data/de440s.bsp http://public-data.nyxspace.com/anise/de438.bsp # GMAT validation cases
wget -O data/pck08.pca http://public-data.nyxspace.com/anise/v0.4/pck08.pca
wget -O data/earth_latest_high_prec.bpc http://public-data.nyxspace.com/anise/ci/earth_latest_high_prec-2023-09-08.bpc
- name: Install cargo-grcov
run: |
rustup component add llvm-tools-preview
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ pyo3-log = { version = "0.10", optional = true }
numpy = { version = "0.21", optional = true }
indicatif = { version = "0.17", features = ["rayon"] }
rstats = "2.0.1"
parquet = { version = "51.0.0", default-features = false, features = [
parquet = { version = "52.0.0", default-features = false, features = [
"arrow",
"zstd",
] }
arrow = "51.0.0"
arrow = "52.0.0"
shadow-rs = { version = "0.28.0", default-features = false }
serde_yaml = "0.9.21"
whoami = "1.3.0"
Expand Down

0 comments on commit d1615ed

Please sign in to comment.