mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
91 lines
2.1 KiB
YAML
91 lines
2.1 KiB
YAML
name: Generate emu config script (Windows)
|
|
|
|
on:
|
|
push:
|
|
branches: [
|
|
"ci-build-gen-win*",
|
|
"ci-build-all"
|
|
]
|
|
tags:
|
|
- release*
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
pull_request:
|
|
branches: [ "dev" ]
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
workflow_dispatch:
|
|
# allows manual trigger
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
env:
|
|
ARTIFACT_NAME: "generate_emu_config-win-${{ github.sha }}"
|
|
SCRIPT_BASE_DIR: "tools/generate_emu_config"
|
|
PACKAGE_BASE_DIR: "tools/generate_emu_config/bin/package/win"
|
|
|
|
THIRD_PARTY_BASE_DIR: 'third-party'
|
|
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.10"
|
|
|
|
- name: Checkout branch
|
|
uses: actions/checkout@v4
|
|
|
|
## extra helpers/tools, these are not built inside the deps build dir
|
|
- 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"
|
|
|
|
- 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"
|
|
|
|
# deps
|
|
- name: Install dependencies
|
|
shell: cmd
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
|
run: recreate_venv_win.bat
|
|
|
|
# build
|
|
- name: Rebuild
|
|
shell: cmd
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
|
run: rebuild_win.bat
|
|
|
|
# package
|
|
- name: Package build
|
|
shell: cmd
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
|
run: package_win.bat
|
|
|
|
# upload artifact
|
|
- name: Upload build package
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: "${{ env.ARTIFACT_NAME }}"
|
|
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
|
if-no-files-found: 'error'
|
|
compression-level: 9
|
|
retention-days: 1
|
|
|
|
# release tag
|
|
- name: Release
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
files: "${{ env.PACKAGE_BASE_DIR }}/**/*"
|
|
|