103 lines
2.5 KiB
YAML
103 lines
2.5 KiB
YAML
# Build (GitHub) — pipeline CI primaria
|
|
#
|
|
# Strategia hosting:
|
|
# - Repo primario su Gitea (push iniziale)
|
|
# - Push mirror automatico Gitea -> GitHub
|
|
# - GitHub esegue TUTTA la CI (Gitea non esegue Actions)
|
|
#
|
|
# Trigger:
|
|
# - push su main (incluso quello propagato dal mirror Gitea)
|
|
# - PR aperte su GitHub
|
|
# - run manuale via UI (senza input)
|
|
|
|
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'docs/**'
|
|
- 'examples/**'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
if: ${{ false }}
|
|
runs-on: windows-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
config: [x86-ansi, x86-unicode, x64-unicode]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Setup MSBuild
|
|
uses: microsoft/setup-msbuild@v3
|
|
|
|
- name: Build ${{ matrix.config }}
|
|
run: python build_plugin.py --configs ${{ matrix.config }} --verbosity normal
|
|
|
|
- name: Collect DLL
|
|
shell: pwsh
|
|
run: |
|
|
$map = @{ 'x86-ansi' = 'x86-ansi'; 'x86-unicode' = 'x86-unicode'; 'x64-unicode' = 'amd64-unicode' }
|
|
$dir = $map['${{ matrix.config }}']
|
|
$src = "plugins\$dir\nsis7z.dll"
|
|
$dst = "dll-bundle\$dir"
|
|
New-Item -ItemType Directory -Force -Path $dst | Out-Null
|
|
Copy-Item $src $dst
|
|
|
|
- name: Upload DLL
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: dll-win-${{ matrix.config }}
|
|
path: dll-bundle/**
|
|
if-no-files-found: error
|
|
retention-days: 30
|
|
|
|
build-linux:
|
|
if: ${{ false }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
config: [x86-ansi, x86-unicode, x64-unicode]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install MinGW toolchain
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y \
|
|
make \
|
|
binutils-mingw-w64-i686 \
|
|
binutils-mingw-w64-x86-64 \
|
|
g++-mingw-w64-i686 \
|
|
g++-mingw-w64-x86-64
|
|
|
|
- name: Build ${{ matrix.config }} on Linux
|
|
run: python build_plugin.py --host linux --configs ${{ matrix.config }} --verbose
|
|
|
|
|