Skip to content

Commit

Permalink
Add more Buildkite logs groups in macOS builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Jun 25, 2024
1 parent e311f51 commit 00453c7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,13 @@ steps:
command: |
.buildkite/commands/prepare-environment.sh
echo "--- :node: Building Binary"
.buildkite/commands/install-node-dependencies.sh
node ./scripts/prepare-dev-build-version.mjs
echo "--- :node: Building Binary"
npm run make:macos-{{matrix}}
echo "--- :node: Packaging in DMG"
npm run make:dmg-{{matrix}}
echo "--- 📃 Notarizing Binary"
Expand Down Expand Up @@ -141,10 +144,13 @@ steps:
command: |
.buildkite/commands/prepare-environment.sh
echo "--- :node: Building Binary"
.buildkite/commands/install-node-dependencies.sh
node ./scripts/confirm-tag-matches-version.mjs
echo "--- :node: Building Binary"
npm run make:macos-{{matrix}}
echo "--- :node: Packaging in DMG"
npm run make:dmg-{{matrix}}
echo "--- 📃 Notarizing Binary"
Expand Down

1 comment on commit 00453c7

@mokagio
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Before

image

After

image

IMHO this is clearer to follow and might allow to selectively drill into portions of the logs.

Please sign in to comment.