mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 12:44:07 +00:00
d174dc16ba
* opt!:remove non-xapian fulltext creation logic
BREAKING CHANGE: after this PR, xapian package will have to installed
before the compilation. on Linux, this should be libxapian-dev package.
For common users: all created fulltext which is not created by xapian
before will be recreated using the new
engine.
* fix: remove old fulltext search ui
* 🎨 apply clang-format changes
---------
Co-authored-by: xiaoyifang <xiaoyifang@users.noreply.github.com>
67 lines
1.8 KiB
YAML
67 lines
1.8 KiB
YAML
name: Windows-PR-check
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
branches:
|
|
- dev
|
|
- master
|
|
- staged
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
# - ".github/**"
|
|
- "howto/**"
|
|
- "*.md"
|
|
- "locale/**"
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
# see https://github.com/actions/virtual-environments/blob/main/images/win/Windows2019-Readme.md
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [windows-2019]
|
|
qt_ver: [5.15.2,6.4.3]
|
|
qt_arch: [win64_msvc2019_64]
|
|
steps:
|
|
- uses: actions/setup-python@v3
|
|
with:
|
|
python-version: '3.9'
|
|
- name: Install Qt
|
|
if: ${{ matrix.qt_ver == '5.15.2' }}
|
|
uses: jurplel/install-qt-action@v3
|
|
with:
|
|
version: ${{ matrix.qt_ver }}
|
|
arch: ${{ matrix.qt_arch }}
|
|
cached: 'false'
|
|
modules: qtwebengine
|
|
- name: Install Qt
|
|
if: ${{ matrix.qt_ver != '5.15.2' }}
|
|
uses: jurplel/install-qt-action@v3
|
|
with:
|
|
version: ${{ matrix.qt_ver }}
|
|
# target: ${{ matrix.qt_target }}
|
|
arch: ${{ matrix.qt_arch }}
|
|
cached: 'false'
|
|
modules: qtwebengine qtwebchannel qtpositioning qt5compat qtmultimedia qtimageformats qtspeech
|
|
setup-python: 'false'
|
|
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
submodules: true
|
|
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
# with:
|
|
# arch: ${{ matrix.msvc_arch }}
|
|
- name: msvc-build goldendict
|
|
id: build
|
|
shell: cmd
|
|
run: |
|
|
qmake "CONFIG+=zim_support" CONFIG+=release CONFIG+=use_iconv CONFIG+=use_xapian
|
|
nmake
|