Skip to content

Commit

Permalink
allinone
Browse files Browse the repository at this point in the history
  • Loading branch information
toddr committed Dec 29, 2023
1 parent 8695ddf commit c6e4e97
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,37 @@ jobs:
run: perl Makefile.PL
- run: make
- run: make test

# ------------------------------------------------------------------------

windows:
env:
PERL_USE_UNSAFE_INC: 0
AUTHOR_TESTING: 0
AUTOMATED_TESTING: 1
RELEASE_TESTING: 0

runs-on: windows-latest
needs: [ubuntu]

strategy:
fail-fast: false
matrix:
perl-version: [latest]

steps:
- uses: actions/checkout@master
- name: Set PATH for Strawberry Perl
uses: egor-tensin/cleanup-path@v3
with:
dirs: 'C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin'
default: 1
- name: perl -V
run: perl -V
- name: Makefile.PL
run: perl Makefile.PL EXPATLIBPATH="C:\strawberry\c\lib" EXPATINCPATH="C:\strawberry\c\include"
- name: make
run: gmake
- name: make test
run: gmake test

40 changes: 0 additions & 40 deletions .github/workflows/windows.yml

This file was deleted.

0 comments on commit c6e4e97

Please sign in to comment.