Skip to content

Commit

Permalink
Updates CI settings for Manjaro.
Browse files Browse the repository at this point in the history
  • Loading branch information
zonble committed Sep 25, 2024
1 parent 8c8f91f commit 337e6dd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,26 @@ jobs:
run: |
cd build
ctest --output-on-failure
build_manjaro:
# strategy:
# fail-fast: false
# matrix:
# os: ["fedora:42", "fedora:41", "fedora:40", "fedora:39"]
runs-on: ubuntu-latest
container: manjarolinux/base:latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pacman -S --noconfirm gcc cmake make pkg-config extra-cmake-modules fmt fcitx5 fcitx5-chinese-addons fcitx5-gtk fcitx5-qt
- name: Build
run: |
mkdir -p build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug
make
- name: Test
run: |
cd build
ctest --output-on-failure

0 comments on commit 337e6dd

Please sign in to comment.