28 lines
706 B
YAML
28 lines
706 B
YAML
name: FFmpeg
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
config:
|
|
description: 'Configuration'
|
|
required: true
|
|
default: 'Debug'
|
|
|
|
jobs:
|
|
|
|
FFmpeg:
|
|
runs-on: windows-2019
|
|
needs: []
|
|
steps:
|
|
- name: Set up MSYS2
|
|
uses: msys2/setup-msys2@v2
|
|
with:
|
|
install: base-devel binutils mingw-w64-x86_64-cmake pkg-config git
|
|
path-type: inherit
|
|
- name: Set up development tools
|
|
shell: cmd
|
|
run: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
type D:\a\_temp\setup-msys2\msys2.cmd
|
|
D:\a\_temp\setup-msys2\msys2.cmd -use-full-path -c "set"
|