Skip to content

Commit

Permalink
fix(ci): install rust the proper way
Browse files Browse the repository at this point in the history
  • Loading branch information
McPatate committed Nov 3, 2023
1 parent 4368521 commit 1198992
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ jobs:
uses: actions/checkout@v4

- name: Install Rust toolchain
run: |
sudo apt update
sudo apt-get install -y rustup
rustup default nightly
rustup update
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly

- name: Install Python 3.10
uses: actions/setup-python@v4
Expand All @@ -30,6 +28,7 @@ jobs:

- name: Install LanceDB dependencies
run: |
sudo apt update
sudo apt install -y protobuf-compiler libssl-dev
- name: Set up cargo cache
Expand Down

0 comments on commit 1198992

Please sign in to comment.