2023-12-16 23:50:30 +08:00
|
|
|
name: Generate emu config script (Windows)
|
2023-12-16 13:20:05 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-12-16 23:35:56 +08:00
|
|
|
branches: [
|
2023-12-17 07:58:52 +08:00
|
|
|
"ci-build-gen-win*",
|
2023-12-16 23:35:56 +08:00
|
|
|
"ci-build-all"
|
|
|
|
]
|
2023-12-17 07:58:52 +08:00
|
|
|
tags:
|
|
|
|
- release*
|
2023-12-16 23:35:56 +08:00
|
|
|
pull_request:
|
|
|
|
branches: [ "dev" ]
|
2023-12-17 07:58:52 +08:00
|
|
|
workflow_dispatch:
|
2023-12-20 21:07:01 +08:00
|
|
|
# allows manual trigger
|
2023-12-16 13:20:05 +08:00
|
|
|
|
|
|
|
permissions:
|
2023-12-17 07:58:52 +08:00
|
|
|
contents: write
|
|
|
|
|
|
|
|
env:
|
|
|
|
ARTIFACT_NAME: "generate_emu_config-win-${{ github.sha }}"
|
2023-12-28 08:15:39 +08:00
|
|
|
SCRIPT_BASE_DIR: "tools/generate_emu_config"
|
|
|
|
PACKAGE_BASE_DIR: "tools/generate_emu_config/bin/package/win"
|
2023-12-17 07:58:52 +08:00
|
|
|
|
|
|
|
THIRD_PARTY_BASE_DIR: 'third-party'
|
2023-12-26 08:14:37 +08:00
|
|
|
|
2023-12-16 13:20:05 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: windows-2022
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Set up Python 3.10
|
|
|
|
uses: actions/setup-python@v3
|
|
|
|
with:
|
|
|
|
python-version: "3.10"
|
|
|
|
|
2023-12-16 13:25:21 +08:00
|
|
|
- name: Checkout branch
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
## extra helpers/tools, these are not built inside the deps build dir
|
2023-12-17 07:58:52 +08:00
|
|
|
- name: Clone third-party deps (deps/win)
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
ref: 'third-party/deps/win'
|
|
|
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
|
|
|
|
2024-01-01 01:54:03 +08:00
|
|
|
- name: Clone third-party deps (build/win)
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
ref: 'third-party/build/win'
|
|
|
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
|
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# deps
|
2023-12-16 13:20:05 +08:00
|
|
|
- name: Install dependencies
|
|
|
|
shell: cmd
|
2023-12-26 08:14:37 +08:00
|
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
2023-12-16 15:55:36 +08:00
|
|
|
run: recreate_venv_win.bat
|
2023-12-16 13:20:05 +08:00
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# build
|
2023-12-16 13:20:05 +08:00
|
|
|
- name: Rebuild
|
|
|
|
shell: cmd
|
2023-12-26 08:14:37 +08:00
|
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
2023-12-16 15:55:36 +08:00
|
|
|
run: rebuild_win.bat
|
2023-12-16 13:20:05 +08:00
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# package
|
2023-12-17 07:58:52 +08:00
|
|
|
- name: Package build
|
|
|
|
shell: cmd
|
2023-12-26 08:14:37 +08:00
|
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
2023-12-17 07:58:52 +08:00
|
|
|
run: package_win.bat
|
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# upload artifact
|
2023-12-17 07:58:52 +08:00
|
|
|
- name: Upload build package
|
2023-12-16 13:20:05 +08:00
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
2023-12-17 07:58:52 +08:00
|
|
|
name: "${{ env.ARTIFACT_NAME }}"
|
2023-12-28 08:15:39 +08:00
|
|
|
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
2023-12-16 13:20:05 +08:00
|
|
|
if-no-files-found: 'error'
|
|
|
|
compression-level: 9
|
2023-12-16 23:35:20 +08:00
|
|
|
retention-days: 1
|
2023-12-17 07:58:52 +08:00
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# release tag
|
2023-12-17 07:58:52 +08:00
|
|
|
- name: Release
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
2023-12-26 08:14:37 +08:00
|
|
|
files: "${{ env.PACKAGE_BASE_DIR }}/**/*"
|
2023-12-16 13:20:05 +08:00
|
|
|
|