From ce84db9c47e2df26938e200ce7f6af542c90edf4 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 28 Mar 2022 10:39:35 -0400 Subject: [PATCH] Install dependencies such as git first before checking out on CI --- .github/workflows/arch.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/arch.yml b/.github/workflows/arch.yml index 4a8ce81..1e565cf 100644 --- a/.github/workflows/arch.yml +++ b/.github/workflows/arch.yml @@ -8,12 +8,16 @@ jobs: container: archlinux:latest steps: + - name: Install dependencies + run: | + pacman -Syu --noconfirm base-devel qt5-tools qt5-base libsecret cmake git tesseract libxcomposite + - uses: actions/checkout@v2 with: submodules: 'recursive' + - name: Compile run: | - pacman -Syu --noconfirm base-devel qt5-tools qt5-base libsecret cmake git tesseract libxcomposite mkdir build && cd build cmake -DCMAKE_BUILD_TYPE=None -DBUILD_SHARED_LIBS=OFF .. make