Skip to content

Commit

Permalink
v0.006001: change to AUTOMATED_CI_TESTING as variable, so smoketester…
Browse files Browse the repository at this point in the history
…s will go back to _not_ trying to download, and will hopefully not fail and go back to NA
  • Loading branch information
pryrt committed Mar 7, 2021
1 parent 351dbed commit da48379
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
environment:
AUTOMATED_TESTING: 1
AUTOMATED_CI_TESTING: 1
matrix:
- perl: default
#- perl: default
# myBits: --FORCEx86
- perl: default
myBits: --FORCEx86
#- perl: 5.32.0.1
#- perl: 5.30.3.1
#- perl: 5.28.2.1
Expand Down
4 changes: 2 additions & 2 deletions helpbuild/myMakeHelper.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ our @EXPORT_OK = (@EXPORT, map {@$_} values %EXPORT_TAGS);
sub myMakeHelper {
my %ret = ();

warn __PACKAGE__, "\tAUTOMATED_TESTING = ", $ENV{AUTOMATED_TESTING}//'<undef>', "\n";
warn __PACKAGE__, "\tAUTOMATED_CI_TESTING = ", $ENV{AUTOMATED_CI_TESTING}//'<undef>', "\n";
warn __PACKAGE__, "\tTEMP = ", $ENV{TEMP}//'<undef>', "\n";
warn __PACKAGE__, "\tTMP = ", $ENV{TMP}//'<undef>', "\n";

Expand All @@ -28,7 +28,7 @@ sub myMakeHelper {
# need to know bitness _before_ checking for NPP existing
$ret{bits} = determine_bitness() or last; # if your Perl isn't 32-bit or 64-bit, cannot determine the necessary Notepad++ to download

unless($ENV{AUTOMATED_TESTING}) { # if not automated, then don't need to
unless($ENV{AUTOMATED_CI_TESTING}) { # if not automated, then don't need to
if( my $nppexe = npp_already_exists($ret{bits}) ) { # if notepad++ already found, don't need to download it; make sure I set the variables
my ($vol, $dir, $fil) = File::Spec->splitpath($nppexe);
$ret{npp_folder} = File::Spec->catpath($vol, $dir, '');
Expand Down
2 changes: 1 addition & 1 deletion lib/Win32/Mechanize/NotepadPlusPlus.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use Exporter 'import';
use Carp;

our $VERSION = '0.006'; # rrr.mmmsss : rrr is major revision; mmm is minor revision; sss is sub-revision (new feature path or bugfix); optionally use _sss instead, for alpha sub-releases
our $VERSION = '0.006001'; # rrr.mmmsss : rrr is major revision; mmm is minor revision; sss is sub-revision (new feature path or bugfix); optionally use _sss instead, for alpha sub-releases

use Win32::Mechanize::NotepadPlusPlus::Notepad ':vars';
use Win32::Mechanize::NotepadPlusPlus::Editor ':vars';
Expand Down
2 changes: 1 addition & 1 deletion lib/Win32/Mechanize/NotepadPlusPlus/Editor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Win32::Mechanize::NotepadPlusPlus::Editor::Messages; # exports %SCIMSG, whi
use utf8; # there are UTF8 arrows throughout the source code (in POD and strings)
use Config;

our $VERSION = '0.006'; # auto-populated from W::M::NPP
our $VERSION = '0.006001'; # auto-populated from W::M::NPP

our @EXPORT_VARS = (@Win32::Mechanize::NotepadPlusPlus::Editor::Messages::EXPORT);
our @EXPORT_OK = (@EXPORT_VARS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Win32/Mechanize/NotepadPlusPlus/Notepad.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ BEGIN {
Win32::API::->Import("psapi","BOOL EnumProcessModules(HANDLE hProcess, HMODULE *lphModule, DWORD cb, LPDWORD lpcbNeeded)") or die "EnumProcessModules: $^E"; # uncoverable branch true
}

our $VERSION = '0.006'; # auto-populated from W::M::NPP
our $VERSION = '0.006001'; # auto-populated from W::M::NPP

our @EXPORT_VARS = (@Win32::Mechanize::NotepadPlusPlus::Notepad::Messages::EXPORT);

Expand Down

0 comments on commit da48379

Please sign in to comment.