Skip to content

chore(deps): bump Swatinem/rust-cache from 1.4.0 to 2.7.1 #1697

chore(deps): bump Swatinem/rust-cache from 1.4.0 to 2.7.1

chore(deps): bump Swatinem/rust-cache from 1.4.0 to 2.7.1 #1697

Workflow file for this run

on:
push:
branches: [main, 'release-v**']
pull_request:
name: Check Benchmarks
jobs:
tests:
name: ${{ matrix.target }}
strategy:
matrix:
os: [ubuntu-latest]
target: [benchmark-check]
runtime: [development, altair, centrifuge]
runs-on: ${{ matrix.os }}
env:
RUST_TOOLCHAIN: "nightly-2023-10-26"
steps:
- name: Prep build on Ubuntu
if: ${{ matrix.os }} == 'ubuntu-latest'
run: |
echo "Pre cleanup"
df -h
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
echo "Post cleanup"
df -h
sudo apt-get install protobuf-compiler
- name: Check out code
uses: actions/checkout@v3
- name: Install latest nightly
uses: actions-rs/toolchain@88dc2356392166efad76775c878094f4e83ff746
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
default: true
- uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
- name: Run fast benchmarks
run: ./ci/script.sh
env:
TARGET: ${{ matrix.target }}
RUNTIME: ${{ matrix.runtime }}