Remove temporary V38 build workflow

This commit is contained in:
2026-08-29 11:54:21 +02:00
parent 26dea2e586
commit 77ed24e68a
@@ -1,63 +0,0 @@
name: Temporary V38 Retail Polish build
on:
push:
branches:
- test/v38-retail-polish
permissions:
contents: read
jobs:
build-v38:
runs-on: ubuntu-latest
steps:
- name: Checkout V38
uses: actions/checkout@v4
- name: Install Zig
uses: mlugg/setup-zig@v2
with:
version: '0.16.0'
- name: Build standalone variants
shell: bash
run: |
set -euo pipefail
zig build all-variants -Doptimize=ReleaseSmall \
-Dweirdperformance=false \
-Doutline=true \
-Dcustomassets=true \
-Dtransmogfix=true
- name: Assemble package
shell: bash
run: |
set -euo pipefail
rm -rf package dist
mkdir -p package/DLL
mkdir -p package/Interface/AddOns/WeirdUtils_Outline
mkdir -p dist
cp zig-out/variants/customassets.dll package/DLL/customassets.dll
cp zig-out/variants/transmogfix.dll package/DLL/transmogfix.dll
cp zig-out/variants/outline.dll package/DLL/outline.dll
cp src/outline/addon/Bindings.xml package/Interface/AddOns/WeirdUtils_Outline/Bindings.xml
cp src/outline/addon/Outline.lua package/Interface/AddOns/WeirdUtils_Outline/Outline.lua
cp src/outline/addon/WeirdUtils_Outline.toc package/Interface/AddOns/WeirdUtils_Outline/WeirdUtils_Outline.toc
printf '%s\n' 'WeirdUtils V38 Retail Polish' 'Base: V37.1 ExitFix' 'AutoTarget + AutoRehook + ExitFix retained.' 'V34 full-float JFA retained.' 'Visual polish only:' '- core radius 1.50px, alpha 0.84' '- halo radius 3.10px, alpha 0.17 with continuous falloff' '- still two texture reads in final decode' 'WeirdPerformance is not built or modified.' > package/README_TEST.txt
(
cd package
sha256sum DLL/*.dll > SHA256SUMS.txt
zip -r ../dist/WeirdUtils_safe_core_V8_RETAIL38_POLISH_AUTOFIX_EXITFIX_ORIGINAL_WeirdPerformance.zip DLL Interface README_TEST.txt SHA256SUMS.txt
)
- name: Upload package
uses: actions/upload-artifact@v4
with:
name: WeirdUtils-safe-core-V8-RETAIL38-POLISH-AUTOFIX-EXITFIX
path: dist/WeirdUtils_safe_core_V8_RETAIL38_POLISH_AUTOFIX_EXITFIX_ORIGINAL_WeirdPerformance.zip
if-no-files-found: error