1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 04:07:46 +00:00

Install dependencies such as git first before checking out on CI

This commit is contained in:
Joshua Goins 2022-03-28 10:39:35 -04:00
parent 49b53f0efa
commit ce84db9c47

View file

@ -8,12 +8,16 @@ jobs:
container: archlinux:latest container: archlinux:latest
steps: steps:
- name: Install dependencies
run: |
pacman -Syu --noconfirm base-devel qt5-tools qt5-base libsecret cmake git tesseract libxcomposite
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
submodules: 'recursive' submodules: 'recursive'
- name: Compile - name: Compile
run: | run: |
pacman -Syu --noconfirm base-devel qt5-tools qt5-base libsecret cmake git tesseract libxcomposite
mkdir build && cd build mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=None -DBUILD_SHARED_LIBS=OFF .. cmake -DCMAKE_BUILD_TYPE=None -DBUILD_SHARED_LIBS=OFF ..
make make