Skip to content

auto-build

auto-build #1

Workflow file for this run

name: Build Windows binaries
on:
push:
pull_request:
repository_dispatch:
types: [run_build]
jobs:
msys:

Check failure on line 10 in .github/workflows/build-win.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-win.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
runs-on: windows-2019
strategy:
matrix:
mingw: ["MINGW32", "MINGW64"]
include:
- mingw: "MINGW32"
package: "mingw-w64-i686"
- mingw: "MINGW64"
package: "mingw-w64-x86_64"
defaults:
run:
shell: bash.exe --login -eo pipefail "{0}"
env:
MSYSTEM: ${{ matrix.mingw }}
CHERE_INVOKING: 1
name: MSYS2 ${{ matrix.mingw }}
steps:
- uses: actions/checkout@v4
- name: Set up shell
run: echo "C:\msys64\usr\bin\" >> $GITHUB_PATH
shell: pwsh
- name: Print system version
run: |
uname
- name: Install MinGW requirements
run: |
echo "$GITHUB_WORKSPACE"
#pacman -S --noconfirm ${{ matrix.package }}-python3-setuptools
# build the project
#python3 setup.py install
- name: Build binaries
run: |
make
- name: Get short SHA
run: echo "sha_name=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_ENV
- name: Compress output
run: |
tar -zcvf build.tar.gz ps2vmc-tool.exe
- uses: actions/upload-artifact@v3
with:
name: build-${{ env.sha_name }}-${{matrix.mingw}}
path: build.tar.gz