From 0910b72cc8536f967bcdf0acdb750e5fe77b0bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Rolim?= Date: Fri, 4 Dec 2020 18:25:02 -0300 Subject: [PATCH] Fix CI. Forgot to add libargon2-devel. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 514bec5..f313c89 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,12 +6,12 @@ jobs: container: voidlinux/voidlinux-musl steps: - uses: actions/checkout@v1 - - run: xbps-install -Sy gcc make bearssl-devel + - run: xbps-install -Sy gcc make bearssl-devel libargon2-devel - run: ci/run.sh clang-glibc: runs-on: ubuntu-latest container: voidlinux/voidlinux steps: - uses: actions/checkout@v1 - - run: xbps-install -Sy clang make bearssl-devel + - run: xbps-install -Sy clang make bearssl-devel libargon2-devel - run: CC=clang ci/run.sh