akvirtualcamera/.github/workflows/windows-msys.yml
Workflow config file is invalid. Please check your config file: yaml: line 9: did not find expected key
2021-08-03 12:32:54 -03:00

45 lines
917 B
YAML

name: Windows MSYS
on: [push, pull_request]
env:
NJOBS: 4
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
strategy:
max-parallel: 10
fail-fast: false
matrix:
include:
- compiler: gcc
- compiler: clang
env:
COMPILER: ${{ matrix.compiler }}
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
ccache
clang
cmake
git
make
pkgconf
python3
mingw-w64-x86_64-binutils
mingw-w64-i686-binutils
mingw-w64-x86_64-cmake
mingw-w64-i686-cmake
mingw-w64-x86_64-pkgconf
mingw-w64-i686-pkgconf
- name: Build
run: ./ports/ci/windows-msys/build.sh
- name: Deploy
run: ./ports/ci/windows-msys/deploy.sh