Skip to content

Commit 3cab5aa

Browse files
committed
github: fix (?) variable references on windows
1 parent 958b11d commit 3cab5aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
path: ${{ env.locallib }}
5050
key: local-lib-${{ matrix.os }}-${{ hashFiles('perl-fingerprint', 'Makefile_PL_settings*.plx') }}
51-
- run: cpanm --mirror "file://$GITHUB_WORKSPACE/$cachepan" --mirror https://www.cpan.org/ --save-dist "$GITHUB_WORKSPACE/$cachepan" --notest ExtUtils::MakeMaker
52-
- run: cpanm --mirror "file://$GITHUB_WORKSPACE/$cachepan" --mirror https://www.cpan.org/ --save-dist "$GITHUB_WORKSPACE/$cachepan" --installdeps --with-develop --notest .
51+
- run: cpanm --mirror "file://${{ github.workspace }}/${{ env.cachepan }}" --mirror https://www.cpan.org/ --save-dist "${{ github.workspace }}/${{ env.cachepan }}" --notest ExtUtils::MakeMaker
52+
- run: cpanm --mirror "file://${{ github.workspace }}/${{ env.cachepan }}" --mirror https://www.cpan.org/ --save-dist "${{ github.workspace }}/${{ env.cachepan }}" --installdeps --with-develop --notest .
5353
- run: perl Makefile.PL
5454
- run: make test

.github/workflows/run-tests.yml.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
path: ${{ env.locallib }}
5050
key: local-lib-${{ matrix.os }}-${{ hashFiles('perl-fingerprint', 'Makefile_PL_settings*.plx') }}
51-
- run: cpanm --mirror "file://$GITHUB_WORKSPACE/$cachepan" --mirror https://www.cpan.org/ --save-dist "$GITHUB_WORKSPACE/$cachepan" --notest ExtUtils::MakeMaker
52-
- run: cpanm --mirror "file://$GITHUB_WORKSPACE/$cachepan" --mirror https://www.cpan.org/ --save-dist "$GITHUB_WORKSPACE/$cachepan" --installdeps --with-develop --notest .
51+
- run: cpanm --mirror "file://${{ github.workspace }}/${{ env.cachepan }}" --mirror https://www.cpan.org/ --save-dist "${{ github.workspace }}/${{ env.cachepan }}" --notest ExtUtils::MakeMaker
52+
- run: cpanm --mirror "file://${{ github.workspace }}/${{ env.cachepan }}" --mirror https://www.cpan.org/ --save-dist "${{ github.workspace }}/${{ env.cachepan }}" --installdeps --with-develop --notest .
5353
- run: perl Makefile.PL
5454
- run: make test

0 commit comments

Comments
 (0)