mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-30 10:38:59 +01:00
Re-enable regression tests
This commit is contained in:
parent
59c73f9584
commit
9b782566f7
@ -112,16 +112,16 @@ rm -f madeline.phar testing.madeline*
|
|||||||
|
|
||||||
echo "Testing with previous version..."
|
echo "Testing with previous version..."
|
||||||
export ACTIONS_FORCE_PREVIOUS=1
|
export ACTIONS_FORCE_PREVIOUS=1
|
||||||
#runTest
|
runTest
|
||||||
#k
|
k
|
||||||
|
|
||||||
echo "Testing with new version (upgrade)..."
|
echo "Testing with new version (upgrade)..."
|
||||||
php tools/makephar.php $madelinePath/../phar "madeline$php$branch.phar" "$COMMIT-$php"
|
php tools/makephar.php $madelinePath/../phar "madeline$php$branch.phar" "$COMMIT-$php"
|
||||||
cp "madeline$php$branch.phar" "madeline-$php.phar"
|
cp "madeline$php$branch.phar" "madeline-$php.phar"
|
||||||
export ACTIONS_PHAR=1
|
export ACTIONS_PHAR=1
|
||||||
#reset
|
reset
|
||||||
#runTestSimple
|
runTestSimple
|
||||||
#k
|
k
|
||||||
|
|
||||||
echo "Testing with new version (restart)"
|
echo "Testing with new version (restart)"
|
||||||
reset
|
reset
|
||||||
|
@ -73,7 +73,11 @@ function ___install_madeline()
|
|||||||
if (\strpos($name, 'phabel/transpiler') === 0) {
|
if (\strpos($name, 'phabel/transpiler') === 0) {
|
||||||
$name = \explode('/', $name, 3)[2];
|
$name = \explode('/', $name, 3)[2];
|
||||||
}
|
}
|
||||||
$packages[$name] = $dep['version_normalized'];
|
$version = $dep['version_normalized'];
|
||||||
|
if ($name === 'danog/madelineproto' && \substr($version, 0, 2) === '90') {
|
||||||
|
$version = \substr($version, 2);
|
||||||
|
}
|
||||||
|
$packages[$name] = $version;
|
||||||
}
|
}
|
||||||
return $packages;
|
return $packages;
|
||||||
};
|
};
|
||||||
@ -113,7 +117,7 @@ function ___install_madeline()
|
|||||||
'Content-Type: application/json',
|
'Content-Type: application/json',
|
||||||
\sprintf(
|
\sprintf(
|
||||||
'User-Agent: Composer/%s (%s; %s; %s; %s%s)',
|
'User-Agent: Composer/%s (%s; %s; %s; %s%s)',
|
||||||
'Madeline v7',
|
'MProto v7',
|
||||||
\function_exists('php_uname') ? @\php_uname('s') : 'Unknown',
|
\function_exists('php_uname') ? @\php_uname('s') : 'Unknown',
|
||||||
\function_exists('php_uname') ? @\php_uname('r') : 'Unknown',
|
\function_exists('php_uname') ? @\php_uname('r') : 'Unknown',
|
||||||
$phpVersion,
|
$phpVersion,
|
||||||
|
Loading…
Reference in New Issue
Block a user