Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: da09070297bd182d67c73c69df14ea8487642e29
https://github.com/Perl/perl5/commit/da09070297bd182d67c73c69df14ea8487642e29
Author: Yves Orton <[email protected]>
Date: 2023-02-23 (Thu, 23 Feb 2023)
Changed paths:
M .github/workflows/testsuite.yml
Log Message:
-----------
.github/workflows/testsuite.yml - switch from secrets to vars
We have been using secrets to store boolean variables. This results
in our CI output being annoyingly corrupted by the security eliding.
Github now supports "variables" as well as secrets, which are not
elided in CI output. So switch our test framework controls to use
the variable. Note the EXTENDED_TESTING variable was switched from
to DO_EXTENDED_TESTING so that we can have both the EXTENDED_TESTING
/secret/ and the new DO_EXTENDED_TESTING variable available at the
same time as this commit is processed.
Fixes #20843