Artifact [b9d4c61481]
Not logged in

Artifact b9d4c614818adbd7db21728d3e9744738b961b3188323b6f023a3957fd75f989:


name: msys2

on:
  push:

jobs:
  msys2:
    runs-on: windows-latest

    defaults:
      run:
        shell: msys2 {0}
        working-directory: unix

    steps:
      - name: Init MSYS
        uses: msys2/setup-msys2@v2
        with:
          msystem: MSYS
          install: git base-devel msys2-devel zlib
          update: true
      - name: Checkout
        uses: actions/checkout@v3
      - name: Build
        run: |
          ./configure -C --prefix=/usr --enable-64bit || { cat config.log; cat config.cache; exit 1; }
          make
      - name: Run Tests (ignoring test io-53.4.1 which hangs)
        run: make test
        env:
          ERROR_ON_FAILURES: 1
          TESTFLAGS: -skip io-53.4.1