From 555be8b5354ece3cd39cae9a2f492787d9390acc Mon Sep 17 00:00:00 2001 From: Tim Clephas Date: Thu, 25 Apr 2024 16:02:54 +0200 Subject: [PATCH 1/2] Drop the rustup iron requirement --- README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/README.md b/README.md index 621aa7ac..422759a5 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,6 @@ For information about the Design please visit [design](docs/design.md) page. ## Setup -Install latest rustc via `rustup` if building on Ubuntu Jammy. -Skip this step if building on Ubuntu Noble as `cargo` and `rustc` will be -installed via `rosdep`. -```bash -curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -rustup install 1.75.0 -``` - Build `rmw_zenoh_cpp` ```bash From 55b42997c6c93762412eabd0263a2a1c332ad760 Mon Sep 17 00:00:00 2001 From: Tim Clephas Date: Thu, 25 Apr 2024 17:26:08 +0200 Subject: [PATCH 2/2] Let rust be automatically installed --- .github/workflows/build.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7dd4881f..98c6020d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -21,8 +21,6 @@ jobs: - name: Deps run: | apt update && apt install -y curl - - name: Setup Rust - uses: dtolnay/rust-toolchain@1.75.0 - uses: actions/checkout@v2 - name: rosdep run: |