mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-30 05:57:12 +02:00
Update WIP discord and some vendors.
CPR has features disabled and PCRE is fully disabled until updated to new code.
This commit is contained in:
62
vendor/DPP/buildtools/make_vcpkg.php
vendored
Normal file
62
vendor/DPP/buildtools/make_vcpkg.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Automatic CI process for generating new vcpkg releases.
|
||||
* Based loosely on RealTimeChris's shell script version.
|
||||
*
|
||||
* This updates the content of ./vcpkg directory within the DPP
|
||||
* repository on the master branch, which can then be diffed into
|
||||
* the microsoft/vcpkg master branch to build a PR for the new
|
||||
* release.
|
||||
*
|
||||
* The procedure for this is:
|
||||
*
|
||||
* 1) Generate various configuration files and put them into the
|
||||
* systemwide vcpkg installation inside the CI container
|
||||
* 2) Attempt to build the package from the release tag,
|
||||
* this will fail due to invalid SHA512 sum and return the
|
||||
* correct SHA512 sum in the error output. Inability to get the
|
||||
* SHA512 sum here will return nonzero from the script, failing
|
||||
* the CI action.
|
||||
* 3) Capture the SHA512 from the error output, switch to master
|
||||
* 4) Copy the correct configuration into both the systemwide
|
||||
* vcpkg install in the container, and into the vcpkg directory
|
||||
* of master branch.
|
||||
* 5) Rerun the `vcpkg install` process again to verify it is working.
|
||||
* A build failure here will return a nonzero return code from
|
||||
* the script, failing the CI action.
|
||||
*/
|
||||
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
use Dpp\Packager\Vcpkg;
|
||||
|
||||
$vcpkg = new Vcpkg();
|
||||
|
||||
/* Check out source for latest tag */
|
||||
if (!$vcpkg->checkoutRepository($vcpkg->getTag())) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* First run with SHA512 of 0 to gather actual value and save it */
|
||||
$sha512 = $vcpkg->firstBuild(
|
||||
$vcpkg->constructPortAndVersionFile()
|
||||
);
|
||||
if (!empty($sha512)) {
|
||||
/* Now check out master */
|
||||
if (!$vcpkg->checkoutRepository()) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* Attempt second build with the valid SHA512 sum. Program exit
|
||||
* status is the exit status of `vcpkg install`
|
||||
*/
|
||||
exit(
|
||||
$vcpkg->secondBuild(
|
||||
$vcpkg->constructPortAndVersionFile($sha512)
|
||||
)
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
/* Error if no SHA sum could be generated */
|
||||
exit(1);
|
Reference in New Issue
Block a user