From 0501c7a9091235cc3e190321e44dada82be9f8c5 Mon Sep 17 00:00:00 2001 From: WolframRhodium Date: Tue, 14 May 2024 10:41:15 +0800 Subject: [PATCH] .github/workflows/windows-ort.yml: test flexible output; dump dependencies --- .github/workflows/windows-ort.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/windows-ort.yml b/.github/workflows/windows-ort.yml index 588e064..ca0f1ec 100644 --- a/.github/workflows/windows-ort.yml +++ b/.github/workflows/windows-ort.yml @@ -261,9 +261,28 @@ jobs: grep -i 'error' x265.log && exit 1 exit 0 + - name: Create script (flexible output) + shell: bash + run: echo "import vapoursynth as vs;from vapoursynth import core;import sys;print(core.ort, file=sys.stderr);print(core.ort.Version(),file=sys.stderr);prop='test';output=core.std.BlankClip(format=vs.RGBS).ort.Model(r\"waifu2x\\upconv_7_anime_style_art_rgb\\scale2.0x_model.onnx\", builtin=True, flexible_output_prop=prop);core.std.ShufflePlanes([output['clip'].std.PropToClip(prop=f'{prop}{i}') for i in range(output['num_planes'])], [0, 0, 0], vs.RGB).resize.Bicubic(format=vs.YUV420P10, matrix_s='709').set_output()" > test.vpy + + - name: Run vspipe (flexible output) + shell: bash + run: | + set -ex + vs_portable/vspipe -i test.vpy - + vs_portable/vspipe --y4m -p -e 9 test.vpy - | vs_portable/x265 --log-file x265.log --log-file-level info --y4m -D 10 --preset ultrafast -o out.hevc - + ls -l out.hevc x265.log + cat x265.log + grep -F 'encoded 10 frames' x265.log || exit 2 + grep -i 'error' x265.log && exit 1 + exit 0 + - name: Describe run: git describe --tags --long + - name: Dump dependencies + run: dumpbin /dependents artifact\vsort.dll + - name: Compress artifact for release if: github.event_name == 'workflow_dispatch' && github.event.inputs.tag != '' run: |