We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ddede6 commit 85f286cCopy full SHA for 85f286c
.github/workflows/benchmarks-run.yml
@@ -70,8 +70,18 @@ jobs:
70
- name: Make Binary Executable
71
run: chmod +x target/release/frequency
72
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
80
+ curl https://sh.rustup.rs -sSf | HOME=`pwd` bash -s -- -y
81
+ echo "PATH=`pwd`/.cargo/bin:$PATH" >> $GITHUB_ENV
82
- name: Update Weights
83
run: |
84
+ rustup show
85
pallets_str="${{github.event.inputs.pallets}}"
86
echo "Pallets: $pallets_str"
87
if [ -z "${pallets_str}" -o $pallets_str = 'all' ]; then
0 commit comments