-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (46 loc) · 1.35 KB
/
build-plugins-win64.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: "Build plugin win64"
on:
workflow_dispatch:
jobs:
build-win64:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
install: >-
base-devel
mingw-w64-ucrt-x86_64-jq
mingw-w64-ucrt-x86_64-gcc
mingw-w64-ucrt-x86_64-pkg-config
mingw-w64-ucrt-x86_64-vapoursynth
mingw-w64-ucrt-x86_64-meson
mingw-w64-ucrt-x86_64-ninja
mingw-w64-ucrt-x86_64-cmake
mingw-w64-ucrt-x86_64-automake
mingw-w64-ucrt-x86_64-autoconf
mingw-w64-ucrt-x86_64-libtool
mingw-w64-ucrt-x86_64-nasm
mingw-w64-ucrt-x86_64-yasm
mingw-w64-ucrt-x86_64-python-pip
- name: Build plugins
run: |
cd '${{ github.workspace }}'
python -m pip install pyzstd click
python github-build.py '${{ github.repository }}'
- name: Upload log
uses: actions/upload-artifact@v4
with:
name: buildlog-win64
path: ${{ github.workspace }}/build.log
if-no-files-found: error