mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-07 12:18:46 +00:00
Fully cover codegen in CI
This commit is contained in:
parent
10238d7934
commit
737f5066a0
13
.github/workflows/main-php-matrix.yml
vendored
13
.github/workflows/main-php-matrix.yml
vendored
@ -147,17 +147,8 @@ jobs:
|
|||||||
- name: Install Composer dependencies
|
- name: Install Composer dependencies
|
||||||
run: composer install --no-dev --prefer-dist --no-interaction
|
run: composer install --no-dev --prefer-dist --no-interaction
|
||||||
|
|
||||||
- name: Regenerate registry annotations
|
- name: Update generated code
|
||||||
run: php build/generate-registry-annotations.php src
|
run: composer update-codegen
|
||||||
|
|
||||||
- name: Regenerate KnownTranslation APIs
|
|
||||||
run: php build/generate-known-translation-apis.php
|
|
||||||
|
|
||||||
- name: Regenerate BedrockData available files constants
|
|
||||||
run: php build/generate-bedrockdata-path-consts.php
|
|
||||||
|
|
||||||
- name: Regenerate YmlServerProperties constants
|
|
||||||
run: php build/generate-pocketmine-yml-property-consts.php
|
|
||||||
|
|
||||||
- name: Verify code is unchanged
|
- name: Verify code is unchanged
|
||||||
run: |
|
run: |
|
||||||
|
@ -102,6 +102,25 @@ function generateClassHeader(string $className) : string{
|
|||||||
return <<<HEADER
|
return <<<HEADER
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* ____ _ _ __ __ _ __ __ ____
|
||||||
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
||||||
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
||||||
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
||||||
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* @author PocketMine Team
|
||||||
|
* @link http://www.pocketmine.net/
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace $namespace;
|
namespace $namespace;
|
||||||
|
@ -61,6 +61,25 @@ function generateItemIds(ItemTypeDictionary $dictionary, BlockItemIdMap $blockIt
|
|||||||
fwrite($file, <<<'HEADER'
|
fwrite($file, <<<'HEADER'
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* ____ _ _ __ __ _ __ __ ____
|
||||||
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
||||||
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
||||||
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
||||||
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* @author PocketMine Team
|
||||||
|
* @link http://www.pocketmine.net/
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace pocketmine\data\bedrock\item;
|
namespace pocketmine\data\bedrock\item;
|
||||||
|
@ -83,11 +83,14 @@
|
|||||||
"@composer install --no-dev --classmap-authoritative --ignore-platform-reqs",
|
"@composer install --no-dev --classmap-authoritative --ignore-platform-reqs",
|
||||||
"@php -dphar.readonly=0 build/server-phar.php"
|
"@php -dphar.readonly=0 build/server-phar.php"
|
||||||
],
|
],
|
||||||
"update-registry-annotations": [
|
"update-codegen": [
|
||||||
|
"@php build/generate-bedrockdata-path-consts.php",
|
||||||
|
"@php build/generate-biome-ids.php",
|
||||||
|
"@php build/generate-block-serializer-consts.php vendor/pocketmine/bedrock-data/canonical_block_states.nbt",
|
||||||
|
"@php build/generate-item-type-names.php vendor/pocketmine/bedrock-data/required_item_list.json",
|
||||||
|
"@php build/generate-known-translation-apis.php",
|
||||||
|
"@php build/generate-pocketmine-yml-property-consts.php",
|
||||||
"@php build/generate-registry-annotations.php src"
|
"@php build/generate-registry-annotations.php src"
|
||||||
],
|
|
||||||
"update-translation-apis": [
|
|
||||||
"@php build/generate-known-translation-apis.php"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user