Skip to content

Commit

Permalink
Merge pull request #3938 from patrickbkr/binary-release-fixes
Browse files Browse the repository at this point in the history
Binary release pipeline fixes
  • Loading branch information
patrickbkr committed Oct 9, 2020
2 parents f106c23 + 99acfa9 commit 6ff7c5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions tools/build/binary-release/build-linux.sh
Expand Up @@ -35,6 +35,7 @@ echo "========= Installing Rakudo"
make install

echo "========= Testing Rakudo"
rm -r t/spec
prove -e install/bin/raku -vlr t

echo "========= Cloning Zef"
Expand Down
1 change: 1 addition & 0 deletions tools/build/binary-release/build-macos.sh
Expand Up @@ -26,6 +26,7 @@ echo "========= Installing Rakudo"
make install

echo "========= Testing Rakudo"
rm -r t/spec
prove -e install/bin/raku -vlr t

echo "========= Cloning Zef"
Expand Down
5 changes: 3 additions & 2 deletions tools/build/binary-release/build-windows.ps1
Expand Up @@ -45,7 +45,8 @@ nmake install
CheckLastExitCode

echo "========= Testing Rakudo"
prove -e ..\install\bin\perl6 -vlr t
rm -r t\spec
prove -e install\bin\raku -vlr t
CheckLastExitCode

echo "========= Cloning Zef"
Expand All @@ -54,7 +55,7 @@ CheckLastExitCode

echo "========= Installing Zef"
cd zef
..\install\bin\raku.exe -I. bin\zef install .
..\install\bin\raku -I. bin\zef install .
CheckLastExitCode
cd ..

Expand Down

0 comments on commit 6ff7c5b

Please sign in to comment.