Skip to content

Commit

Permalink
Don't fail CI if base image's apt db is outdated
Browse files Browse the repository at this point in the history
  • Loading branch information
sgeisler committed Apr 4, 2021
1 parent 1326f7d commit 7f2a701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
PIN_VERSIONS: true
steps:
- name: Install test dependencies
run: sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc libiberty-dev
run: sudo apt-get update -y && sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc libiberty-dev
- name: Checkout Crate
uses: actions/checkout@v2
- name: Checkout Toolchain
Expand Down

0 comments on commit 7f2a701

Please sign in to comment.