-
Notifications
You must be signed in to change notification settings - Fork 1
Add global build script #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
camillobruni
wants to merge
4
commits into
main
Choose a base branch
from
2025-12-17_move_workloads
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| import {defaultSuites} from "../resources/default-tests.mjs" | ||
| import {logGroup, sh} from "./helper.mjs" | ||
|
|
||
| const workloadDirs = new Set(); | ||
|
|
||
| for (const suite of defaultSuites) { | ||
| const parts = suite.url.split("/"); | ||
| const workloadDir = parts.slice(0, parts.indexOf("dist")).join("/"); | ||
| workloadDirs.add(workloadDir); | ||
| } | ||
|
|
||
| for (const workloadDir of workloadDirs) { | ||
| await logGroup(`BUILDING:${workloadDir}`, () => buildWorkload(workloadDir)); | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tiny nit: space after |
||
| } | ||
|
|
||
| async function buildWorkload(workloadDir) { | ||
| await sh(["npm", "install"], {cwd: workloadDir}); | ||
| await sh(["npm", "run", "build"], {cwd: workloadDir}); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,150 @@ | ||
| // Copyright (C) 2007-2025 Apple Inc. All rights reserved. | ||
|
|
||
| // Redistribution and use in source and binary forms, with or without | ||
| // modification, are permitted provided that the following conditions | ||
| // are met: | ||
| // 1. Redistributions of source code must retain the above copyright | ||
| // notice, this list of conditions and the following disclaimer. | ||
| // 2. Redistributions in binary form must reproduce the above copyright | ||
| // notice, this list of conditions and the following disclaimer in the | ||
| // documentation and/or other materials provided with the distribution. | ||
|
|
||
| // THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' | ||
| // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
| // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
| // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS | ||
| // BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
| // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
| // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
| // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
| // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
| // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | ||
| // THE POSSIBILITY OF SUCH DAMAGE. | ||
|
|
||
| import core from "@actions/core"; | ||
| import { spawn } from "child_process"; | ||
| import commandLineUsage from "command-line-usage"; | ||
| import { styleText } from "node:util"; | ||
|
|
||
| export const GITHUB_ACTIONS_OUTPUT = ("GITHUB_ACTIONS_OUTPUT" in process.env) || ("GITHUB_EVENT_PATH" in process.env); | ||
|
|
||
| export function logInfo(...args) { | ||
| const text = args.join(" ") | ||
| if (GITHUB_ACTIONS_OUTPUT) | ||
| core.info(styleText("yellow", text)); | ||
| else | ||
| console.log(styleText("yellow", text)); | ||
| } | ||
|
|
||
| export function logError(...args) { | ||
| let error; | ||
| if (args.length == 1 && args[0] instanceof Error) | ||
| error = args[0]; | ||
| const text = args.join(" "); | ||
| if (GITHUB_ACTIONS_OUTPUT) { | ||
| if (error?.stack) | ||
| core.error(error.stack); | ||
| else | ||
| core.error(styleText("red", text)); | ||
| } else { | ||
| if (error?.stack) | ||
| console.error(styleText("red", error.stack)); | ||
| else | ||
| console.error(styleText("red", text)); | ||
| } | ||
| } | ||
|
|
||
| export function logCommand(...args) { | ||
| const cmd = args.join(" "); | ||
| if (GITHUB_ACTIONS_OUTPUT) { | ||
| core.notice(styleText("blue", cmd)); | ||
| } else { | ||
| console.log(styleText("blue", cmd)); | ||
| } | ||
| } | ||
|
|
||
|
|
||
| export async function logGroup(name, body) { | ||
| if (GITHUB_ACTIONS_OUTPUT) { | ||
| core.startGroup(name); | ||
| } else { | ||
| logInfo("=".repeat(80)); | ||
| logInfo(name); | ||
| logInfo(".".repeat(80)); | ||
| } | ||
| try { | ||
| return await body(); | ||
| } finally { | ||
| if (GITHUB_ACTIONS_OUTPUT) | ||
| core.endGroup(); | ||
| } | ||
| } | ||
|
|
||
|
|
||
| export function printHelp(message, optionDefinitions) { | ||
| const usage = commandLineUsage([ | ||
| { | ||
| header: "Run all tests", | ||
| }, | ||
| { | ||
| header: "Options", | ||
| optionList: optionDefinitions, | ||
| }, | ||
| ]); | ||
| if (!message?.length) { | ||
| console.log(usage); | ||
| process.exit(0); | ||
| } else { | ||
| console.error(message); | ||
| console.log(); | ||
| console.log(usage); | ||
| process.exit(1); | ||
| } | ||
| } | ||
|
|
||
|
|
||
| export async function sh(args, options={}) { | ||
| const cmd = args.join(" "); | ||
| const binary = args[0]; | ||
| if (GITHUB_ACTIONS_OUTPUT) | ||
| core.startGroup(binary); | ||
| logCommand(cmd); | ||
| try { | ||
| return await spawnCaptureStdout(binary, args.slice(1), options); | ||
| } catch(e) { | ||
| logError(e.stdoutString); | ||
| throw e; | ||
| } finally { | ||
| if (GITHUB_ACTIONS_OUTPUT) | ||
| core.endGroup(); | ||
| } | ||
| } | ||
|
|
||
| const SPAWN_OPTIONS = Object.freeze({ | ||
| stdio: ["inherit", "pipe", "inherit"] | ||
| }); | ||
|
|
||
| async function spawnCaptureStdout(binary, args, options={}) { | ||
| options = Object.assign(options, SPAWN_OPTIONS); | ||
| const childProcess = spawn(binary, args, options); | ||
| childProcess.stdout.pipe(process.stdout); | ||
| return new Promise((resolve, reject) => { | ||
| childProcess.stdoutString = ""; | ||
| childProcess.stdio[1].on("data", (data) => { | ||
| childProcess.stdoutString += data.toString(); | ||
| }); | ||
| childProcess.on("close", (code) => { | ||
| if (code === 0) { | ||
| resolve(childProcess); | ||
| } else { | ||
| // Reject the Promise with an Error on failure | ||
| const error = new Error(`Command failed with exit code ${code}: ${binary} ${args.join(" ")}`); | ||
| error.process = childProcess; | ||
| error.stdout = childProcess.stdoutString; | ||
| error.exitCode = code; | ||
| reject(error); | ||
| } | ||
| }); | ||
| childProcess.on("error", reject); | ||
| }) | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add a copyright header for BSD here: