Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove what's left of setup_dev.sh & setup.sh #5552

Merged
merged 2 commits into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ cd rerun

Now install the `pixi` package manager: <https://github.com/prefix-dev/pixi?tab=readme-ov-file#installation>

Finally, run the following script to install the dependencies and CLI tools needed for Rerun's build environment:

```sh
./scripts/setup_dev.sh
```

Make sure `cargo --version` prints `1.74.0` once you are done.

If you are using an Apple-silicon Mac (M1, M2), make sure `rustc -vV` outputs `host: aarch64-apple-darwin`. If not, this should fix it:
Expand All @@ -37,6 +31,14 @@ If you are using an Apple-silicon Mac (M1, M2), make sure `rustc -vV` outputs `h
rustup set default-host aarch64-apple-darwin && rustup install 1.74.0
```

Additionally, we use [cargo-cranky](https://github.com/ericseppanen/cargo-cranky) for defining which Clippy lints are active and [cargo-deny](https://github.com/EmbarkStudios/cargo-deny) for linting crate versions.
You don't need to install these for building, but it's highly recommended when contributing changes to
Rust code.
```sh
cargo install cargo-cranky
cargo install --locked cargo-deny
```

## Building and running the viewer

Use this command for building and running the viewer:
Expand Down
1 change: 0 additions & 1 deletion ci_docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ LABEL version="0.11.0"
LABEL description="Docker image used for the CI of https://github.com/rerun-io/rerun"

# Install the ubuntu package dependencies
# This mirrors scripts/setup.sh
ENV DEBIAN_FRONTEND=noninteractive
RUN set -eux; \
apt-get update; \
Expand Down
60 changes: 0 additions & 60 deletions scripts/setup.sh

This file was deleted.

40 changes: 0 additions & 40 deletions scripts/setup_dev.sh

This file was deleted.

Loading