1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00

Merge pull request #15 from pepper-jelly/main

Archlinux CI, helps #5
This commit is contained in:
redstrate 2021-12-19 02:46:22 +00:00 committed by GitHub
commit 348c2148dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/xivlauncher-arch.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: xivlauncher Arch Linux CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- uses: actions/checkout@v2
- 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
install -Dm 755 xivlauncher -t /tmp/xivlauncher
- name: Archive the artifacts
uses: actions/upload-artifact@v2
with:
name: xivlauncher-build
path: /tmp/xivlauncher