Show local time for start time

This commit is contained in:
2025-01-14 01:19:41 -05:00
parent 16e62ff901
commit d4b357ab20
6 changed files with 32 additions and 5 deletions

View File

@@ -134,12 +134,13 @@ class DB {
await this.logChunk.sync();
}
public async createBuild(repo: string, commit: string, patch: string, distro: string): Promise<number> {
public async createBuild(repo: string, commit: string, patch: string, distro: string, dependencies: string): Promise<number> {
const buildRec = await this.build.create({
repo,
commit: commit || null,
patch: patch || null,
distro
distro,
dependencies
});
return buildRec.id;
}