Skip to content

Commit edbd82d

Browse files
committed
ci: run and log make test
1 parent 1ade6f9 commit edbd82d

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ jobs:
9292
apperlm configure -Dcf_by="$CF_BY" -Dcf_email="$CF_EMAIL"
9393
apperlm build
9494
zip -r ${{ env.REL_NAME }} ${{ env.DEST_BIN }} ${{ env.DEST_BIN }}.dbg
95+
- name: Run make test
96+
run: make -C .apperl/o/${{ matrix.config }}/tmp/perl5 test 2>&1 | tee make-test.log
9597
- name: Upload build artifacts
9698
uses: actions/upload-artifact@v7
9799
with:
@@ -101,6 +103,7 @@ jobs:
101103
${{ env.DEST_BIN }}
102104
${{ env.DEST_BIN }}.dbg
103105
${{ env.REL_NAME }}
106+
make-test.log
104107
105108
test-Perl-Dist-APPerl:
106109
name: test Perl-Dist-APPerl

lib/Perl/Dist/APPerl.pm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,6 +1007,7 @@ sub Checkout {
10071007
my $tomove = "perl5-$version";
10081008
print "mv $tomove $perl_build_dir\n";
10091009
move($tomove, $perl_build_dir) or die "Failed to move perl src";
1010+
print "cd $perl_build_dir\n";
10101011
chdir($perl_build_dir) or die "Failed to enter perl build_dir";
10111012
}
10121013
foreach my $patch (@{$itemconfig->{patches}}) {

0 commit comments

Comments
 (0)