From 23c1c9ab0805dd40571866994a7b264b3d984cfb Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Sat, 3 Jul 2021 18:35:51 +0100 Subject: [PATCH] install libelf-dev as dependency of mgba-test-runner --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7e434479..d1879691 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,7 +16,7 @@ jobs: - name: Set CARGO_TARGET_DIR run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV - name: Install build tools - run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi -y + run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev -y - uses: actions/checkout@v2 - name: Cache uses: actions/cache@v2.1.6