ci: upload test artifacts (#42925)

* Upload test-artifacts directory

* Rename test artifacts directory to avoid conflicts

* Update .gitignore

* Upload test artifacts

* Update .gitignore

* Update move-artifacts.sh

* Update artifacts.ts

* Update pipeline-segment-electron-test.yml

* Make output less noisy

* reduce artifact image size
This commit is contained in:
Sam Maddock 2024-07-17 01:56:56 -04:00 committed by GitHub
parent 778d3098a0
commit c7709747d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 2 deletions

View file

@ -167,11 +167,18 @@ export class ScreenCapture {
} while (Date.now() < expiration);
if (!gotExpectedResult) {
// Limit image to 720p to save on storage space
if (process.env.CI) {
const width = Math.floor(Math.min(frame.getSize().width, 720));
frame = frame.resize({ width });
}
// Save the image as an artifact for better debugging
const artifactName = await createArtifactWithRandomId(
(id) => `color-mismatch-${id}.png`,
frame.toPNG()
);
throw new AssertionError(
`Expected color at (${point.x}, ${point.y}) to ${
matchIsExpected ? 'match' : '*not* match'