Skip to content

Commit

Permalink
Merge pull request #4293 from hove-io/fix_rustc_version_for_tartare-t…
Browse files Browse the repository at this point in the history
…ools

[CI] Fix rustc version
  • Loading branch information
kadhikari authored Jul 26, 2024
2 parents c1536b8 + 242589a commit c8f7538
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker/debian8/Dockerfile-tyr-worker
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ ARG GITHUB_TOKEN
RUN git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/hove-io/".insteadOf "ssh://[email protected]/hove-io/"
RUN git clone -b ${TARTARE_TOOLS_VERSION} --depth 1 https://x-access-token:${GITHUB_TOKEN}@github.com/hove-io/tartare-tools

# rustc 1.80.0 broke the compilation
RUN rustup install 1.79.0

RUN cd tartare-tools \
&& cargo build --release -p enrich-ntfs-with-addresses \
&& cargo build --release -p split-trip-geometries \
&& cargo +1.79.0 build --release -p enrich-ntfs-with-addresses \
&& cargo +1.79.0 build --release -p split-trip-geometries \
&& cp target/release/enrich-ntfs-with-addresses /usr/bin/ \
&& cp target/release/split-trip-geometries /usr/bin/ \
&& cd .. \
Expand Down

0 comments on commit c8f7538

Please sign in to comment.