Skip to content

Commit

Permalink
Merge pull request #153 from zonble/master
Browse files Browse the repository at this point in the history
Updates CI settings for Manjaro.
  • Loading branch information
lukhnos committed Sep 26, 2024
2 parents 8c8f91f + 337e6dd commit 2d6e223
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 2d6e223

Please sign in to comment.