Compare commits

...

3 Commits

Author SHA1 Message Date
Marc
352955d608 absolute dir? 2025-07-21 21:36:33 +07:00
Marc
e07b281577 fix build dir conflict 2025-07-21 21:25:33 +07:00
Marc
71f4e45256 remove workaround 2025-07-21 21:22:41 +07:00
2 changed files with 1 additions and 3 deletions

View File

@@ -24,6 +24,7 @@ trait grpc
protected function build(): void
{
$cmake = UnixCMakeExecutor::create($this)
->setBuildDir($this->source_dir . '/avoid_BUILD_file_conflict')
->addConfigureArgs(
'-DgRPC_SSL_PROVIDER=package',
'-DgRPC_INSTALL_BINDIR=' . BUILD_BIN_PATH,

View File

@@ -94,9 +94,6 @@ class SourceManager
// if not, remove the source dir and extract again
logger()->notice("Source [{$source}] hash mismatch, removing old source dir and extracting again ...");
if ($source === 'micro' || $source === 'grpc') {
return;
}
FileSystem::removeDir($check);
$filename = LockFile::getLockFullPath($lock_content);
$move_path = LockFile::getExtractPath($lock_name, SOURCE_PATH . '/' . $source);