goldendict-ng/.github/workflows/windows.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

242 lines
8.7 KiB
YAML
Raw Normal View History

2022-04-24 01:18:19 +00:00
name: Windows
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
# push:
# branches:
# - dev
# - master
# paths-ignore:
# - 'docs/**'
# - "howto/**"
# - "*.md"
# - ".clang-format"
2022-04-24 01:18:19 +00:00
jobs:
build:
name: Build
# 运行平台
2022-04-24 01:18:19 +00:00
# 参考文档 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]
qt_arch: [win64_msvc2019_64]
env:
targetName: GoldenDict.exe
2023-12-08 01:36:35 +00:00
version: 23.12.08
2023-05-31 12:56:28 +00:00
version-suffix: alpha
prerelease: true
2022-04-24 01:18:19 +00:00
# 步骤
steps:
# 安装Qt
- name: Install Qt
# 使用外部action。这个action专门用来安装Qt
uses: jurplel/install-qt-action@v3
2022-04-24 01:18:19 +00:00
with:
# Version of Qt to install
version: ${{ matrix.qt_ver }}
# Target platform for build
# target: ${{ matrix.qt_target }}
arch: ${{ matrix.qt_arch }}
2022-04-24 01:18:19 +00:00
modules: qtwebengine
# 拉取代码
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
2022-04-24 01:18:19 +00:00
- name: changelog
2022-12-13 09:29:30 +00:00
id: changelog
2022-12-25 04:06:14 +00:00
shell: bash
run: |
previousTag=$(git tag --sort=-creatordate | grep "^v" | sed -n 2p)
echo "previousTag : $previousTag"
echo "prev_tag=$previousTag" >> $GITHUB_OUTPUT
echo "curr_tag=$(git tag --sort=-creatordate | grep "^v" | sed -n 1p)" >> $GITHUB_OUTPUT
2022-06-12 02:02:48 +00:00
2022-04-24 01:18:19 +00:00
- name: Set outputs
id: vars
shell: bash
run: |
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
2022-06-12 02:02:48 +00:00
2022-12-12 06:42:09 +00:00
- name: version-file
2022-06-12 02:02:48 +00:00
shell: bash
2023-06-22 11:54:22 +00:00
env:
VAR_SUFFIX: ${{env.version-suffix}}
VAR_VERSION: ${{env.version}}
2022-06-12 02:02:48 +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
cat version.txt
echo "$version"
2022-12-12 06:42:09 +00:00
2022-04-24 01:18:19 +00:00
- uses: ilammy/msvc-dev-cmd@v1
# msvc编译
- name: msvc-build goldendict
id: build
shell: cmd
run: |
qmake "CONFIG+=zim_support" CONFIG+=release CONFIG+=use_iconv CONFIG+=use_xapian CONFIG+=no_ffmpeg_player
2022-04-24 01:18:19 +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=%Qt5_DIR% >> %GITHUB_ENV%
# 打包
2023-08-13 11:44:31 +00:00
- name: windows ps package
id: package-windows
2022-04-24 01:18:19 +00:00
env:
2022-05-11 11:42:07 +00:00
archiveName: GoldenDict-Windows.${{ steps.vars.outputs.sha_short }}-${{ steps.vars.outputs.release_time }}
2022-04-24 01:18:19 +00:00
shell: pwsh
run: |
& .github\scripts\windows-publish.ps1 ${env:archiveName} ${env:targetName}
2023-08-13 11:44:31 +00:00
- name: package
id: package
shell: bash
run: |
packageName=GoldenDict-Windows.${{ steps.vars.outputs.sha_short }}-${{ steps.vars.outputs.release_time }}
echo $packageName
echo "packageName=$packageName" >> $GITHUB_OUTPUT
2022-05-12 14:01:56 +00:00
- name: "Build Changelog"
id: build_changelog
uses: mikepenz/release-changelog-builder-action@v3
2023-06-03 07:29:08 +00:00
with:
2023-06-12 03:07:07 +00:00
commitMode: false
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>",
"categories": [
{
"title": "## 🚀 Features",
"labels": ["feature","feat","opt"]
},
{
"title": "## 🐛 Fixes",
"labels": ["fix","bug"]
}
,
{
"title": "## 🤖 Github action",
"labels": ["action"]
}
,
{
"title": "## 🧼 Clean Code",
"labels": ["clean"]
}
],
"label_extractor": [
{
"pattern": "([^:]*):.*",
"target": "$1",
"on_property": "title",
"flags": "gu"
}
]
}
2023-06-23 09:16:47 +00:00
2022-04-24 01:18:19 +00:00
- name: upload goldendict.exe only
# if: startsWith(github.event.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: release/${{ env.targetName }}
asset_name: ${{ matrix.qt_ver }}-${{ env.targetName }}
2023-07-30 14:20:17 +00:00
tag: v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.sha_short }}
2022-04-24 01:18:19 +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-04-24 01:18:19 +00:00
2022-05-12 14:01:56 +00:00
- name: copy nsis
shell: bash
run: |
ls -al
cp tools/nsis/GoldenDict.nsi ${{ steps.package.outputs.packageName }}/
- name: Create installer
uses: joncloud/makensis-action@v4
2022-05-12 14:01:56 +00:00
with:
arguments: "/V3"
script-file: ${{ steps.package.outputs.packageName }}/GoldenDict.nsi
- name: make installer
run: |
ls *.exe
cd ${{ steps.package.outputs.packageName }}
ls *.exe
- name: upload goldendict installer
# if: startsWith(github.event.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
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-07-30 14:20:17 +00:00
tag: v${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.sha_short }}
2022-05-12 14:01: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}}
2023-06-23 09:16:47 +00:00
- name: uploadRelease
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
<https://xiaoyifang.github.io/goldendict-ng/install/>.
#### Filename pattern (文件名模式): **[Qt version]-GoldenDict-ng-[OS]-[release-date].[ext]**
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
macOS users can use `.dmg` installer.
2023-06-23 09:16:47 +00:00
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-07-02 08:09:20 +00:00
#### Changes
${{steps.build_changelog.outputs.changelog}}