Unverified Commit 4aa61418 authored by Matteo Bigoi's avatar Matteo Bigoi Committed by GitHub
Browse files

Use apt-get update before installing packages in server CI (#1244)

parent 3a54b913
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ jobs:
        components: ${{ env.rust_toolchain_components }}
        default: true
    - name: Install benchmarks dependencies
      run: sudo apt-get install -y ${{ env.apt_dependencies }}
      run: sudo apt-get update && sudo apt-get install -y ${{ env.apt_dependencies }}
    # Ubuntu 20.04 doesn't have wrk packaged, hence we need to build it 🤦
    # This will go away as soon as GitHub supports Ubuntu 21.10.
    - name: Install wrk