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

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

241 lines
8.6 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_run:
# workflows: [AutoTag]
# types: [completed]
workflow_dispatch:
push:
branches:
- dev
- master
# - staged
paths-ignore:
- 'docs/**'
# - ".github/**"
2022-04-24 01:18:19 +00:00
- "howto/**"
- "*.md"
- ".clang-format"
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-07-25 05:36:42 +00:00
version: 23.07.25
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 "::set-output name=prev_tag::$previousTag"
echo "::set-output name=curr_tag::$(git tag --sort=-creatordate | grep "^v" | sed -n 1p)"
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 "::set-output name=sha_short::$(git rev-parse --short=8 HEAD)"
echo "::set-output name=release_date::$(date +'%Y%m%d')"
2022-06-12 02:02:48 +00:00
echo "::set-output name=release_time::$(date +'%H%M%S')"
echo "::set-output name=release_time_clock::$(date +'%H:%M:%S')"
2022-04-24 01:18:19 +00:00
echo "::set-output name=release_hm::$(date +'%y%m%d')"
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: |
# call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{ matrix.msvc_arch }}
qmake "CONFIG+=zim_support" CONFIG+=release CONFIG+=use_iconv CONFIG+=use_xapian
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%
# 打包
- name: package
id: package
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
msvcArch: ${{ matrix.msvc_arch }}
shell: pwsh
run: |
& .github\scripts\windows-publish.ps1 ${env:archiveName} ${env:targetName}
$name = ${env:archiveName}
echo "::set-output name=packageName::$name"
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-06-22 11:54:22 +00:00
tag: tag-${{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@v3.6
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-06-22 11:54:22 +00:00
tag: tag-${{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
tag: tag-${{env.version-suffix}}.${{ steps.vars.outputs.sha_short }}
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).
Linux users can use AppImages.
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
#### Changes
${{steps.build_changelog.outputs.changelog}}