2023-06-23 04:27:51 +00:00
|
|
|
name: Windows-6.x
|
2022-10-05 23:54:28 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
|
|
# workflow_run:
|
|
|
|
# workflows: [AutoTag]
|
|
|
|
# types: [completed]
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
- master
|
|
|
|
# - staged
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2023-06-23 08:25:55 +00:00
|
|
|
# - ".github/**"
|
2022-10-05 23:54:28 +00:00
|
|
|
- "howto/**"
|
|
|
|
- "*.md"
|
|
|
|
- ".clang-format"
|
|
|
|
|
|
|
|
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]
|
2023-10-13 11:40:53 +00:00
|
|
|
qt_ver: [6.5.2,6.6.0 ]
|
2022-10-05 23:54:28 +00:00
|
|
|
qt_arch: [win64_msvc2019_64]
|
|
|
|
env:
|
|
|
|
targetName: GoldenDict.exe
|
2023-09-30 13:12:18 +00:00
|
|
|
version: 23.10.01
|
2023-05-31 12:56:28 +00:00
|
|
|
version-suffix: alpha
|
|
|
|
prerelease: true
|
2022-10-05 23:54:28 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/setup-python@v3
|
|
|
|
with:
|
|
|
|
python-version: '3.9'
|
|
|
|
- name: Install Qt
|
2022-11-28 13:37:42 +00:00
|
|
|
uses: jurplel/install-qt-action@v3
|
2022-10-05 23:54:28 +00:00
|
|
|
with:
|
|
|
|
version: ${{ matrix.qt_ver }}
|
|
|
|
# target: ${{ matrix.qt_target }}
|
|
|
|
arch: ${{ matrix.qt_arch }}
|
2023-03-26 03:39:51 +00:00
|
|
|
modules: qtwebengine qtwebchannel qtpositioning qt5compat qtmultimedia qtimageformats qtspeech
|
2022-10-05 23:54:28 +00:00
|
|
|
setup-python: 'false'
|
2022-11-28 13:37:42 +00:00
|
|
|
|
2022-10-05 23:54:28 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-05-01 01:09:19 +00:00
|
|
|
submodules: true
|
2022-10-05 23:54:28 +00:00
|
|
|
|
2022-12-20 13:49:57 +00:00
|
|
|
- name: changelog
|
2022-12-13 09:29:30 +00:00
|
|
|
id: changelog
|
2022-12-25 04:06:14 +00:00
|
|
|
shell: bash
|
2022-12-20 13:49:57 +00:00
|
|
|
run: |
|
2023-06-20 07:56:26 +00:00
|
|
|
previousTag=$(git tag --sort=-creatordate | grep "^v" | sed -n 2p)
|
2022-12-20 13:49:57 +00:00
|
|
|
echo "previousTag : $previousTag"
|
|
|
|
|
2023-08-13 03:57:13 +00:00
|
|
|
echo "prev_tag=$previousTag" >> $GITHUB_OUTPUT
|
|
|
|
echo "curr_tag=$(git tag --sort=-creatordate | grep "^v" | sed -n 1p)" >> $GITHUB_OUTPUT
|
2023-06-11 15:00:22 +00:00
|
|
|
|
|
|
|
- name: "Build Changelog"
|
|
|
|
id: build_changelog
|
|
|
|
uses: mikepenz/release-changelog-builder-action@v3
|
|
|
|
with:
|
2023-06-12 03:07:07 +00:00
|
|
|
commitMode: false
|
2023-06-11 15:00:22 +00:00
|
|
|
fromTag: "${{ steps.changelog.outputs.prev_tag }}"
|
|
|
|
toTag: "${{ steps.changelog.outputs.curr_tag }}"
|
|
|
|
configurationJson: |
|
|
|
|
{
|
2023-06-12 03:07:07 +00:00
|
|
|
"template": "#{{CHANGELOG}}\n\n<details>\n<summary>🔴 Uncategorized</summary>\n\n#{{UNCATEGORIZED}}\n</details>",
|
2023-06-11 15:00:22 +00:00
|
|
|
"categories": [
|
|
|
|
{
|
|
|
|
"title": "## 🚀 Features",
|
|
|
|
"labels": ["feature","feat","opt"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "## 🐛 Fixes",
|
|
|
|
"labels": ["fix","bug"]
|
|
|
|
}
|
|
|
|
,
|
|
|
|
{
|
|
|
|
"title": "## 🤖 Github action",
|
|
|
|
"labels": ["action"]
|
|
|
|
}
|
2023-06-16 12:42:42 +00:00
|
|
|
,
|
|
|
|
{
|
|
|
|
"title": "## 🧼 Clean Code",
|
|
|
|
"labels": ["clean"]
|
|
|
|
}
|
|
|
|
|
2023-06-11 15:00:22 +00:00
|
|
|
|
|
|
|
],
|
|
|
|
"label_extractor": [
|
|
|
|
{
|
|
|
|
"pattern": "([^:]*):.*",
|
|
|
|
"target": "$1",
|
|
|
|
"on_property": "title",
|
|
|
|
"flags": "gu"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-10-05 23:54:28 +00:00
|
|
|
- name: Set outputs
|
|
|
|
id: vars
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-08-13 03:57:13 +00:00
|
|
|
echo "sha_short=$(git rev-parse --short=8 HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
echo "release_date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
|
|
|
|
echo "release_time=$(date +'%H%M%S')" >> $GITHUB_OUTPUT
|
|
|
|
echo "release_time_clock=$(date +'%H:%M:%S')" >> $GITHUB_OUTPUT
|
|
|
|
echo "release_hm=$(date +'%y%m%d')" >> $GITHUB_OUTPUT
|
2023-06-11 15:00:22 +00:00
|
|
|
|
2022-12-12 06:42:09 +00:00
|
|
|
- name: version-file
|
2022-10-05 23:54:28 +00:00
|
|
|
shell: bash
|
2023-06-22 11:54:22 +00:00
|
|
|
env:
|
|
|
|
VAR_SUFFIX: ${{env.version-suffix}}
|
|
|
|
VAR_VERSION: ${{env.version}}
|
2022-10-05 23:54:28 +00:00
|
|
|
run: |
|
2023-06-22 11:54:22 +00:00
|
|
|
current_tag=$(git rev-parse --short=8 HEAD)
|
|
|
|
release_date=$(date +'%Y%m%d')
|
|
|
|
echo "$VAR_VERSION-$VAR_SUFFIX.$release_date.$current_tag">version.txt
|
2022-12-13 12:01:39 +00:00
|
|
|
cat version.txt
|
2023-06-22 11:54:22 +00:00
|
|
|
echo "$version"
|
2022-10-05 23:54:28 +00:00
|
|
|
|
2023-09-07 16:28:50 +00:00
|
|
|
- name: vcpkg build
|
|
|
|
uses: johnwason/vcpkg-action@v5
|
|
|
|
id: vcpkg
|
|
|
|
with:
|
2023-09-07 23:47:52 +00:00
|
|
|
# pkgs: ffmpeg[core,avcodec,avformat,mp3lame,opus,speex,swresample,vorbis,fdk-aac,gpl] breakpad
|
|
|
|
pkgs: breakpad
|
2023-09-07 16:28:50 +00:00
|
|
|
triplet: x64-windows-release
|
|
|
|
token: ${{ github.token }}
|
2023-05-01 08:01:48 +00:00
|
|
|
- name: copy vcpkg packages into winlibs
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cp -R vcpkg/packages/breakpad_x64-windows-release/* thirdparty/breakpad
|
|
|
|
ls -al thirdparty/breakpad
|
|
|
|
|
2022-10-05 23:54:28 +00:00
|
|
|
# # msvc编译
|
|
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
# with:
|
|
|
|
# arch: ${{ matrix.msvc_arch }}
|
|
|
|
- name: msvc-build goldendict
|
|
|
|
id: build
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
2023-09-26 03:09:05 +00:00
|
|
|
qmake "CONFIG+=zim_support" CONFIG+=release CONFIG+=use_xapian CONFIG+=use_iconv CONFIG+=use_breakpad CONFIG+=no_ffmpeg_player CONFIG+=no_tts_support
|
2022-10-05 23:54:28 +00:00
|
|
|
nmake
|
|
|
|
|
|
|
|
echo winSdkDir=%WindowsSdkDir% >> %GITHUB_ENV%
|
|
|
|
echo winSdkVer=%WindowsSdkVersion% >> %GITHUB_ENV%
|
|
|
|
echo vcToolsInstallDir=%VCToolsInstallDir% >> %GITHUB_ENV%
|
|
|
|
echo vcToolsRedistDir=%VCToolsRedistDir% >> %GITHUB_ENV%
|
|
|
|
echo QTDIR=%Qt6_DIR% >> %GITHUB_ENV%
|
|
|
|
|
|
|
|
# 打包
|
2023-08-13 03:57:13 +00:00
|
|
|
- name: windows ps package
|
|
|
|
id: package-windows
|
2022-10-05 23:54:28 +00:00
|
|
|
env:
|
|
|
|
archiveName: GoldenDict-Windows.${{ steps.vars.outputs.sha_short }}-${{ steps.vars.outputs.release_time }}
|
|
|
|
shell: pwsh
|
|
|
|
run: |
|
|
|
|
& .github\scripts\windows-publish.ps1 ${env:archiveName} ${env:targetName}
|
2023-06-11 15:00:22 +00:00
|
|
|
|
2023-08-13 03:57:13 +00:00
|
|
|
- name: package
|
|
|
|
id: package
|
2023-08-13 11:44:31 +00:00
|
|
|
shell: bash
|
2023-08-13 03:57:13 +00:00
|
|
|
run: |
|
2023-08-13 11:44:31 +00:00
|
|
|
packageName=GoldenDict-Windows.${{ steps.vars.outputs.sha_short }}-${{ steps.vars.outputs.release_time }}
|
|
|
|
echo $packageName
|
|
|
|
echo "packageName=$packageName" >> $GITHUB_OUTPUT
|
2022-10-05 23:54:28 +00:00
|
|
|
|
|
|
|
- name: upload goldendict.exe only
|
|
|
|
uses: svenstaro/upload-release-action@v2
|
|
|
|
with:
|
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
file: release/${{ env.targetName }}
|
2023-05-31 15:22:53 +00:00
|
|
|
asset_name: ${{ matrix.qt_ver }}.${{ matrix.os }}-${{ env.targetName }}
|
2023-06-11 15:00:22 +00:00
|
|
|
|
2023-07-30 14:20:17 +00:00
|
|
|
tag: v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.sha_short }}
|
2022-10-05 23:54:28 +00:00
|
|
|
overwrite: true
|
2023-04-17 09:11:18 +00:00
|
|
|
release_name: GoldenDict-ng-v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.release_hm }}.${{ steps.vars.outputs.sha_short }}
|
2022-10-05 23:54:28 +00:00
|
|
|
prerelease: ${{env.prerelease}}
|
|
|
|
|
2023-05-11 23:58:56 +00:00
|
|
|
- name: upload pdb
|
|
|
|
uses: svenstaro/upload-release-action@v2
|
|
|
|
with:
|
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
file: release/GoldenDict.pdb
|
2023-05-31 15:22:53 +00:00
|
|
|
asset_name: ${{ matrix.qt_ver }}.${{ matrix.os }}-GoldenDict.pdb
|
2023-06-11 15:00:22 +00:00
|
|
|
|
2023-07-30 14:20:17 +00:00
|
|
|
tag: v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.sha_short }}
|
2023-05-11 23:58:56 +00:00
|
|
|
overwrite: true
|
|
|
|
release_name: GoldenDict-ng-v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.release_hm }}.${{ steps.vars.outputs.sha_short }}
|
|
|
|
prerelease: ${{env.prerelease}}
|
|
|
|
|
2022-10-05 23:54:28 +00:00
|
|
|
- name: copy nsis
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cp tools/nsis/GoldenDict.nsi ${{ steps.package.outputs.packageName }}/
|
|
|
|
- name: Create installer
|
2023-08-13 13:06:31 +00:00
|
|
|
uses: joncloud/makensis-action@v4
|
2022-10-05 23:54:28 +00:00
|
|
|
with:
|
|
|
|
arguments: "/V3"
|
|
|
|
script-file: ${{ steps.package.outputs.packageName }}/GoldenDict.nsi
|
|
|
|
- name: make installer
|
|
|
|
run: |
|
|
|
|
cd ${{ steps.package.outputs.packageName }}
|
|
|
|
ls *.exe
|
|
|
|
- name: upload goldendict installer
|
|
|
|
uses: svenstaro/upload-release-action@v2
|
|
|
|
with:
|
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
2023-04-17 09:11:18 +00:00
|
|
|
file: ${{ steps.package.outputs.packageName }}/GoldenDict-ng-v23-Installer.exe
|
2023-05-17 15:23:08 +00:00
|
|
|
asset_name: ${{ matrix.qt_ver }}-GoldenDict-ng-Installer.exe
|
2023-06-11 15:00:22 +00:00
|
|
|
|
2023-07-30 14:20:17 +00:00
|
|
|
tag: v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.sha_short }}
|
2022-10-05 23:54:28 +00:00
|
|
|
overwrite: true
|
2023-04-17 09:11:18 +00:00
|
|
|
release_name: GoldenDict-ng-v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.release_hm }}.${{ steps.vars.outputs.sha_short }}
|
2022-10-05 23:54:28 +00:00
|
|
|
prerelease: ${{env.prerelease}}
|
2023-06-23 09:16:47 +00:00
|
|
|
|
|
|
|
- name: uploadRelease
|
|
|
|
# if: startsWith(github.event.ref, 'refs/tags/')
|
|
|
|
uses: svenstaro/upload-release-action@v2
|
|
|
|
with:
|
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
file: ${{ steps.package.outputs.packageName }}.zip
|
|
|
|
asset_name: ${{ matrix.qt_ver }}-${{ env.targetName }}_${{ matrix.os }}_${{steps.vars.outputs.release_date}}.zip
|
|
|
|
|
2023-07-30 14:20:17 +00:00
|
|
|
tag: v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.sha_short }}
|
2023-06-23 09:16:47 +00:00
|
|
|
overwrite: true
|
|
|
|
release_name: GoldenDict-ng-v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.release_hm }}.${{ steps.vars.outputs.sha_short }}
|
|
|
|
prerelease: ${{env.prerelease}}
|
|
|
|
body: |
|
2023-07-02 08:09:20 +00:00
|
|
|
#### Install instructions for Windows, macOS and Linux
|
2023-06-23 09:16:47 +00:00
|
|
|
|
2023-07-02 08:09:20 +00:00
|
|
|
<https://xiaoyifang.github.io/goldendict-ng/install/>.
|
2023-06-23 09:16:47 +00:00
|
|
|
|
2023-07-02 08:09:20 +00:00
|
|
|
#### Filename pattern (文件名模式): **[Qt version]-GoldenDict-ng-[OS]-[release-date].[ext]**
|
2023-06-23 09:16:47 +00:00
|
|
|
|
2023-07-02 08:09:20 +00:00
|
|
|
Qt6.X is recommended for various enhancements.
|
|
|
|
|
|
|
|
Windows users can use either `****-installer.exe` (for installer) or `****.zip` (unzip and run).
|
|
|
|
The `goldendict.exe` can be dropped into previous installation's folder (if dependencies aren't changed).
|
|
|
|
|
2023-10-29 08:11:32 +00:00
|
|
|
Linux users can use Flatpak or build from source.
|
2023-10-29 09:17:28 +00:00
|
|
|
https://flathub.org/apps/io.github.xiaoyifang.goldendict_ng
|
2023-07-02 08:09:20 +00:00
|
|
|
|
2023-07-06 02:20:43 +00:00
|
|
|
macOS users can use `.dmg` installer.
|
2023-07-02 08:09:20 +00:00
|
|
|
|
|
|
|
`6.5.1-GoldenDict.exe_windows-2019_20230701.zip` means built with Qt6.5.1, windows/msvc-2019 at 20230701 as a zip archive.
|
2023-06-23 09:16:47 +00:00
|
|
|
|
2023-07-02 08:09:20 +00:00
|
|
|
#### Build Details
|
|
|
|
|
|
|
|
AppImage: Ubuntu-20.04
|
|
|
|
macOS: macOS-12 and macOS-13
|
|
|
|
Windows: Visual studio 2019
|
2023-09-14 06:57:15 +00:00
|
|
|
based on: ${{github.ref_name}}
|
2023-06-23 09:16:47 +00:00
|
|
|
|
2023-07-02 08:09:20 +00:00
|
|
|
#### Changes
|
|
|
|
|
|
|
|
${{steps.build_changelog.outputs.changelog}}
|