Skip to content

Commit 85f286c

Browse files
committed
Keep Rust steps so the tests can run
1 parent 9ddede6 commit 85f286c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/benchmarks-run.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,18 @@ jobs:
7070
- name: Make Binary Executable
7171
run: chmod +x target/release/frequency
7272

73+
- name: Install Required Packages
74+
run: |
75+
sudo apt-get update
76+
sudo apt install -y protobuf-compiler libclang-dev clang cmake
77+
- name: Install Rust Toolchain
78+
# Match installation steps to CI base docker image
79+
run: |
80+
curl https://sh.rustup.rs -sSf | HOME=`pwd` bash -s -- -y
81+
echo "PATH=`pwd`/.cargo/bin:$PATH" >> $GITHUB_ENV
7382
- name: Update Weights
7483
run: |
84+
rustup show
7585
pallets_str="${{github.event.inputs.pallets}}"
7686
echo "Pallets: $pallets_str"
7787
if [ -z "${pallets_str}" -o $pallets_str = 'all' ]; then

0 commit comments

Comments
 (0)