Skip to content

Add workflow checking that deployed repository can produce "Hello World!" executable #10

Add workflow checking that deployed repository can produce "Hello World!" executable

Add workflow checking that deployed repository can produce "Hello World!" executable #10

name: Check MSYS2 repository
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: msys2/setup-msys2@v2
with:
update: true
- shell: msys2 {0}
run: |
uname -a
- name: Checkout repository
uses: actions/checkout@v4
- name: Test
run: |
ls
- name: Install toolchain
run: |
msys2 -c "pwd"
msys2 -c "echo `cygpath \"${{ github.workspace }}\"`/.github/scripts/install-toolchain.sh"
msys2 -c "/d/a/msys2-woarm64-build/msys2-woarm64-build/.github/scripts/install-toolchain.sh"
test:
needs: [build]
runs-on: [Windows, GCC, ARM64]
steps:
- name: Checkout repository
uses: actions/checkout@v4