2020-05-28 21:07:39 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-12-14 15:32:27 +01:00
|
|
|
import path from 'path';
|
|
|
|
import childProcess from 'child_process';
|
2020-05-28 21:07:39 +02:00
|
|
|
|
2021-12-14 15:32:27 +01:00
|
|
|
import HakEnv from '../../scripts/hak/hakEnv';
|
|
|
|
import { DependencyInfo } from '../../scripts/hak/dep';
|
2020-05-28 21:07:39 +02:00
|
|
|
|
2021-12-14 15:32:27 +01:00
|
|
|
export default async function buildKeytar(hakEnv: HakEnv, moduleInfo: DependencyInfo): Promise<void> {
|
2020-05-28 21:07:39 +02:00
|
|
|
const env = hakEnv.makeGypEnv();
|
|
|
|
|
|
|
|
console.log("Running yarn with env", env);
|
2021-12-14 15:32:27 +01:00
|
|
|
await new Promise<void>((resolve, reject) => {
|
2020-05-28 21:07:39 +02:00
|
|
|
const proc = childProcess.spawn(
|
|
|
|
path.join(moduleInfo.nodeModuleBinDir, 'node-gyp' + (hakEnv.isWin() ? '.cmd' : '')),
|
|
|
|
['rebuild'],
|
|
|
|
{
|
|
|
|
cwd: moduleInfo.moduleBuildDir,
|
|
|
|
env,
|
|
|
|
stdio: 'inherit',
|
|
|
|
},
|
|
|
|
);
|
|
|
|
proc.on('exit', (code) => {
|
|
|
|
code ? reject(code) : resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|