Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tamlok committed May 9, 2024
1 parent 98a4e41 commit 1bc67ad
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:

env:
VNOTE_VER: 3.17.0
CMAKE_VER: 3.24.3

jobs:
build-linux:
Expand Down Expand Up @@ -54,7 +55,7 @@ jobs:
- name: Install Dependencies
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libfcitx5-qt-dev tree
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libfcitx5-qt-dev fcitx-libs-dev extra-cmake-modules libxkbcommon-dev tree
- name: Cache Qt
id: cache-qt
Expand All @@ -75,6 +76,16 @@ jobs:
run: mkdir build
working-directory: ${{runner.workspace}}

- name: Compile fcitxqt5
run: |
git clone https://github.com/fcitx/fcitx-qt5
cd fcitx-qt5
mkdir build && cd build
cmake -DENABLE_QT5=OFF -DENABLE_QT6=ON ..
make -j2
make install
working-directory: ${{runner.workspace}}/build

- name: Compile qt6ct
run: |
git clone https://github.com/trialuser02/qt6ct qt6ct.git
Expand Down

0 comments on commit 1bc67ad

Please sign in to comment.