mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 08:34:13 +08:00
66 lines
1.7 KiB
YAML
66 lines
1.7 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
paths: [ '.github/workflows/build.yml','src/**']
|
|
pull_request:
|
|
paths: [ '.github/workflows/build.yml','src/**']
|
|
|
|
jobs:
|
|
pyrt:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
architecture: [x86, x64]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.7.9'
|
|
architecture: ${{ matrix.architecture }}
|
|
|
|
- run: python src/build.py pyrt ${{ matrix.architecture }} 3.7.9
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: pyrt_${{ matrix.architecture }}
|
|
path: src/pyrt
|
|
build_cpp:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
architecture: [x86, x64]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- uses: GuillaumeFalourd/setup-windows10-sdk-action@v2
|
|
with:
|
|
sdk-version: 22621
|
|
|
|
- run: python src/build.py cpp ${{ matrix.architecture }}
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: cpp_${{ matrix.architecture }}
|
|
path: src/plugins/builds
|
|
|
|
|
|
release:
|
|
runs-on: windows-latest
|
|
needs: [pyrt,build_cpp]
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- architecture: x86
|
|
fname: LunaTranslator_x86
|
|
- architecture: x64
|
|
fname: LunaTranslator
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/download-artifact@v4
|
|
with:
|
|
path: build
|
|
- run: python src/build.py merge ${{ matrix.architecture }}
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ matrix.fname }}
|
|
path: src/build/${{matrix.fname}}.zip |