mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-24 03:54:43 -07:00
Build binary (#18933)
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com>
This commit is contained in:
@@ -102,7 +102,9 @@ export async function loadSandboxConfig(
|
||||
|
||||
const packageJson = await getPackageJson(__dirname);
|
||||
const image =
|
||||
process.env['GEMINI_SANDBOX_IMAGE'] ?? packageJson?.config?.sandboxImageUri;
|
||||
process.env['GEMINI_SANDBOX_IMAGE'] ??
|
||||
process.env['GEMINI_SANDBOX_IMAGE_DEFAULT'] ??
|
||||
packageJson?.config?.sandboxImageUri;
|
||||
|
||||
return command && image ? { command, image } : undefined;
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
import { spawn } from 'node:child_process';
|
||||
import { spawn, execSync } from 'node:child_process';
|
||||
import type {
|
||||
HookConfig,
|
||||
CommandHookConfig,
|
||||
@@ -331,12 +331,17 @@ export class HookRunner {
|
||||
let timedOut = false;
|
||||
|
||||
const shellConfig = getShellConfiguration();
|
||||
const command = this.expandCommand(
|
||||
let command = this.expandCommand(
|
||||
hookConfig.command,
|
||||
input,
|
||||
shellConfig.shell,
|
||||
);
|
||||
|
||||
if (shellConfig.shell === 'powershell') {
|
||||
// Append exit code check to ensure the exit code of the command is propagated
|
||||
command = `${command}; if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }`;
|
||||
}
|
||||
|
||||
// Set up environment variables
|
||||
const env = {
|
||||
...sanitizeEnvironment(process.env, this.config.sanitizationConfig),
|
||||
@@ -359,12 +364,31 @@ export class HookRunner {
|
||||
// Set up timeout
|
||||
const timeoutHandle = setTimeout(() => {
|
||||
timedOut = true;
|
||||
child.kill('SIGTERM');
|
||||
|
||||
if (process.platform === 'win32' && child.pid) {
|
||||
try {
|
||||
execSync(`taskkill /pid ${child.pid} /f /t`, { timeout: 2000 });
|
||||
} catch (_e) {
|
||||
// Ignore errors if process is already dead or access denied
|
||||
debugLogger.debug(`Taskkill failed: ${_e}`);
|
||||
}
|
||||
} else {
|
||||
child.kill('SIGTERM');
|
||||
}
|
||||
|
||||
// Force kill after 5 seconds
|
||||
setTimeout(() => {
|
||||
if (!child.killed) {
|
||||
child.kill('SIGKILL');
|
||||
if (process.platform === 'win32' && child.pid) {
|
||||
try {
|
||||
execSync(`taskkill /pid ${child.pid} /f /t`, { timeout: 2000 });
|
||||
} catch (_e) {
|
||||
// Ignore
|
||||
debugLogger.debug(`Taskkill failed: ${_e}`);
|
||||
}
|
||||
} else {
|
||||
child.kill('SIGKILL');
|
||||
}
|
||||
}
|
||||
}, 5000);
|
||||
}, timeout);
|
||||
|
||||
@@ -74,16 +74,41 @@ async function main() {
|
||||
});
|
||||
|
||||
if (zipProcess.error || zipProcess.status !== 0) {
|
||||
// Fallback to tar --format=zip if zip is not available (common on Windows)
|
||||
console.log('zip command not found, falling back to tar...');
|
||||
zipProcess = spawnSync(
|
||||
'tar',
|
||||
['-a', '-c', '--format=zip', '-f', outputFilename, '.'],
|
||||
{
|
||||
cwd: skillPath,
|
||||
stdio: 'inherit',
|
||||
},
|
||||
);
|
||||
if (process.platform === 'win32') {
|
||||
// Fallback to PowerShell Compress-Archive on Windows
|
||||
// Note: Compress-Archive only supports .zip extension, so we zip to .zip and rename
|
||||
console.log('zip command not found, falling back to PowerShell...');
|
||||
const tempZip = outputFilename + '.zip';
|
||||
// Escape single quotes for PowerShell (replace ' with '') and use single quotes for the path
|
||||
const safeTempZip = tempZip.replace(/'/g, "''");
|
||||
zipProcess = spawnSync(
|
||||
'powershell.exe',
|
||||
[
|
||||
'-NoProfile',
|
||||
'-Command',
|
||||
`Compress-Archive -Path .\\* -DestinationPath '${safeTempZip}' -Force`,
|
||||
],
|
||||
{
|
||||
cwd: skillPath,
|
||||
stdio: 'inherit',
|
||||
},
|
||||
);
|
||||
|
||||
if (zipProcess.status === 0 && require('node:fs').existsSync(tempZip)) {
|
||||
require('node:fs').renameSync(tempZip, outputFilename);
|
||||
}
|
||||
} else {
|
||||
// Fallback to tar on Unix-like systems
|
||||
console.log('zip command not found, falling back to tar...');
|
||||
zipProcess = spawnSync(
|
||||
'tar',
|
||||
['-a', '-c', '--format=zip', '-f', outputFilename, '.'],
|
||||
{
|
||||
cwd: skillPath,
|
||||
stdio: 'inherit',
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (zipProcess.error) {
|
||||
|
||||
@@ -498,13 +498,19 @@ export class TestRig {
|
||||
command: string;
|
||||
initialArgs: string[];
|
||||
} {
|
||||
const binaryPath = env['INTEGRATION_TEST_GEMINI_BINARY_PATH'];
|
||||
const isNpmReleaseTest =
|
||||
env['INTEGRATION_TEST_USE_INSTALLED_GEMINI'] === 'true';
|
||||
const geminiCommand = os.platform() === 'win32' ? 'gemini.cmd' : 'gemini';
|
||||
const command = isNpmReleaseTest ? geminiCommand : 'node';
|
||||
const initialArgs = isNpmReleaseTest
|
||||
? extraInitialArgs
|
||||
: [BUNDLE_PATH, ...extraInitialArgs];
|
||||
let command = 'node';
|
||||
let initialArgs = [BUNDLE_PATH, ...extraInitialArgs];
|
||||
if (binaryPath) {
|
||||
command = binaryPath;
|
||||
initialArgs = extraInitialArgs;
|
||||
} else if (isNpmReleaseTest) {
|
||||
command = geminiCommand;
|
||||
initialArgs = extraInitialArgs;
|
||||
}
|
||||
if (this.fakeResponsesPath) {
|
||||
if (process.env['REGENERATE_MODEL_GOLDENS'] === 'true') {
|
||||
initialArgs.push('--record-responses', this.fakeResponsesPath);
|
||||
|
||||
@@ -1676,6 +1676,33 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
============================================================
|
||||
safe-buffer@5.2.1
|
||||
(git://github.com/feross/safe-buffer.git)
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Feross Aboukhadijeh
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
|
||||
============================================================
|
||||
cookie@0.7.2
|
||||
(No repository found)
|
||||
|
||||
Reference in New Issue
Block a user