only compile, build or attempt to load the XS module on Win32 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-win32-mingw64 | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
perlio-win32console: | |
runs-on: windows-latest | |
timeout-minutes: 15 | |
steps: | |
- run: git config --global core.autocrlf false | |
- uses: actions/checkout@v2 | |
- name: configure | |
run: | | |
$env:path = "c:\strawberry\c\bin;"+$env:path | |
perl Makefile.PL | |
- name: build | |
run: | | |
$env:path = "c:\strawberry\c\bin;"+$env:path | |
gmake | |
- name: test | |
run: | | |
gmake test |