ci: Fix build workflow in arm64 self-hosted (#1111)

Issue #1047 (CMake porting)
This commit is contained in:
Joey Parrish 2022-10-25 10:07:45 -07:00 committed by GitHub
parent a9a4f0d52c
commit 18cc627e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -100,7 +100,12 @@ jobs:
- name: Install Linux deps
if: runner.os == 'Linux'
run: sudo apt install -y libc-ares-dev
# NOTE: cmake is already installed in GitHub Actions VMs, but not
# necessarily in a self-hosted runner.
run: |
sudo apt install -y \
cmake \
libc-ares-dev
- name: Generate build files
run: |