diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d27e8be..b4e8083 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -26,9 +26,9 @@ jobs: - name: Download CSPICE if: steps.cache-cspice.outputs.cache-hit != 'true' run: - wget https://naif.jpl.nasa.gov/pub/naif/toolkit/C/PC_Linux_GCC_64bit/packages/cspice.tar.Z - gzip -d cspice.tar.Z - tar xf cspice.tar + wget https://naif.jpl.nasa.gov/pub/naif/toolkit/C/PC_Linux_GCC_64bit/packages/cspice.tar.Z && + gzip -d cspice.tar.Z && + tar xf cspice.tar && mv cspice/lib/cspice.a cspice/lib/libcspice.a - name: Build run: cargo build --verbose