Skip to content

Commit 32044f3

Browse files
committed
full test
1 parent e4ba31d commit 32044f3

File tree

1 file changed

+30
-29
lines changed

1 file changed

+30
-29
lines changed

.github/workflows/dummy.yml

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -126,21 +126,22 @@ jobs:
126126
for my $v (@strawberry_versions) {
127127
print "\t$v\n";
128128
}
129+
129130
# Don't want anything less then 5.8
130131
@strawberry_versions = grep { ! /^5\.6\.*/ } @strawberry_versions;
131-
@strawberry_versions = ('5.42.0');
132+
# @strawberry_versions = ('5.42.0');
132133
133134
set_output(matrix => {perl => [@strawberry_versions], distribution => ['strawberry'] });
134135
outputs:
135136
matrix: ${{ steps.set-matrix.outputs.matrix }}
136137

137-
run-windows:
138+
run-windows-default:
138139
name: Perl ${{ matrix.perl }} on '${{ matrix.distribution }}'
139140
runs-on: windows-latest
140-
needs: [list-windows-default, list-windows-strawberry]
141+
needs: list-windows-default
141142
strategy:
142143
fail-fast: false
143-
matrix: ${{ fromJson(needs.list-windows-default.outputs.matrix )}} ${{ fromJson(needs.list-windows-strawberry.outputs.matrix )}}
144+
matrix: ${{ fromJson(needs.list-windows-default.outputs.matrix )}}
144145
steps:
145146
- uses: actions/checkout@v6
146147
- name: Setup perl
@@ -160,28 +161,28 @@ jobs:
160161
run: make test
161162

162163

163-
#
164-
# run-windows-strawberry:
165-
# name: Perl ${{ matrix.perl }} on '${{ matrix.distribution }}'
166-
# runs-on: windows-latest
167-
# needs: list-windows-strawberry
168-
# strategy:
169-
# fail-fast: false
170-
# matrix: ${{fromJson(needs.list-windows-strawberry.outputs.matrix)}}
171-
# steps:
172-
# - uses: actions/checkout@v6
173-
# - name: Setup perl
174-
# uses: shogo82148/actions-setup-perl@v1
175-
# with:
176-
# perl-version: ${{ matrix.perl }}
177-
# distribution: ${{ matrix.distribution }}
178-
# - name: Install packages
179-
# run: choco install make
180-
# - name: Perl version
181-
# run: perl -V
182-
# - name: Install dependencies
183-
# run: cpanm --quiet --installdeps --notest .
184-
# - name: Build
185-
# run: perl Makefile.PL && make
186-
# - name: Test
187-
# run: make test
164+
165+
run-windows-strawberry:
166+
name: Perl ${{ matrix.perl }} on '${{ matrix.distribution }}'
167+
runs-on: windows-latest
168+
needs: list-windows-strawberry
169+
strategy:
170+
fail-fast: false
171+
matrix: ${{fromJson(needs.list-windows-strawberry.outputs.matrix)}}
172+
steps:
173+
- uses: actions/checkout@v6
174+
- name: Setup perl
175+
uses: shogo82148/actions-setup-perl@v1
176+
with:
177+
perl-version: ${{ matrix.perl }}
178+
distribution: ${{ matrix.distribution }}
179+
- name: Install packages
180+
run: choco install make
181+
- name: Perl version
182+
run: perl -V
183+
- name: Install dependencies
184+
run: cpanm --quiet --installdeps --notest .
185+
- name: Build
186+
run: perl Makefile.PL && make
187+
- name: Test
188+
run: make test

0 commit comments

Comments
 (0)