Merge pull request #583 from sgeisler/2021-04-fix-ci

Don't fail CI if base image's apt db is outdated
This commit is contained in:
Steven Roose 2021-04-06 15:14:30 +01:00 committed by GitHub
commit fe9242ce8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ jobs:
PIN_VERSIONS: true PIN_VERSIONS: true
steps: steps:
- name: Install test dependencies - 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 - name: Checkout Crate
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Checkout Toolchain - name: Checkout Toolchain