Skip to content

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

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

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

name: Check MSYS2 repository
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: msys2/setup-msys2@v2
with:
msystem: MSYS
location: ${{ github.workspace }}
release: true
update: true
cache: false
install: base-devel
- name: Checkout repository
uses: actions/checkout@v4
- shell: msys2 {0}
run: |
echo `cygpath "${{ github.workspace }}"`/.github/scripts/install-toolchain.sh
`cygpath "${{ github.workspace }}"`/.github/scripts/install-toolchain.sh
test:
needs: [build]
runs-on: [Windows, GCC, ARM64]
steps:
- name: Checkout repository
uses: actions/checkout@v4