chore: stash output of vmstat in artifacts (#793)
This commit is contained in:
parent
6599b03e75
commit
266edb2439
|
@ -68,6 +68,13 @@ workspaces:
|
|||
without: true
|
||||
tasks:
|
||||
- test:
|
||||
hooks:
|
||||
- type: before_task
|
||||
command: vmstat -a -S M -t 1 2>&1 > vmstat.out &
|
||||
- type: after_task
|
||||
command: cat vmstat.out
|
||||
artifact_paths:
|
||||
- vmstat.out
|
||||
- format:
|
||||
queue: bazel-lib-small
|
||||
- gazelle:
|
||||
|
|
|
@ -4,12 +4,12 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", _http_archive = "http_archi
|
|||
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
||||
|
||||
# TODO: move this to a rule set so repositories on Aspect Workflows can avoid this boilerplate
|
||||
rosetta_version = "5.9.22"
|
||||
rosetta_version = "5.9.23"
|
||||
rosetta_integrity = {
|
||||
"darwin_aarch64": "sha256-EXjXWBWQPa2l7QQTz3XbUXo2sz0aPHqxioT+LiOesyw=",
|
||||
"darwin_x86_64": "sha256-6+BVUK8oKFNWZtFPW9pSnPvnSd9doDLecNsWdl7zHuk=",
|
||||
"linux_aarch64": "sha256-TBHcq62DXuBW2rATy5KGlBmgKnldAT3A6iDSYCt2UBE=",
|
||||
"linux_x86_64": "sha256-X4M8I9gBapSkUHlu85/Vi6Gz3qWZv9M06mWW3jAXyfY=",
|
||||
"darwin_aarch64": "sha256-PDPqg71zILLpI3Ty4p+OxfqyZYE1cB4t8wAF/4A6e/E=",
|
||||
"darwin_x86_64": "sha256-ZEKTyj+N3In/OqkIPKb1PSodMjf8BTfoowaCuE3IWDM=",
|
||||
"linux_aarch64": "sha256-eceTIsiZ7gylU355flUe94R1ZU21fQ3fmHseOWcN2MU=",
|
||||
"linux_x86_64": "sha256-pICGFRNJn/nVTuEb1DpOm8BPDasjNEVH4nceiF1e2aQ=",
|
||||
}
|
||||
|
||||
# https://github.com/suzuki-shunsuke/circleci-config-merge/releases
|
||||
|
|
|
@ -379,6 +379,8 @@ jobs:
|
|||
path: /workflows/testlogs
|
||||
- store_artifacts:
|
||||
path: /workflows/artifacts
|
||||
- store_artifacts:
|
||||
path: vmstat.out
|
||||
- run:
|
||||
command: rosetta run finalization
|
||||
environment:
|
||||
|
@ -466,6 +468,8 @@ jobs:
|
|||
path: /workflows/testlogs
|
||||
- store_artifacts:
|
||||
path: /workflows/artifacts
|
||||
- store_artifacts:
|
||||
path: vmstat.out
|
||||
- run:
|
||||
command: rosetta run finalization
|
||||
environment:
|
||||
|
@ -553,6 +557,8 @@ jobs:
|
|||
path: /workflows/testlogs
|
||||
- store_artifacts:
|
||||
path: /workflows/artifacts
|
||||
- store_artifacts:
|
||||
path: vmstat.out
|
||||
- run:
|
||||
command: rosetta run finalization
|
||||
environment:
|
||||
|
@ -640,6 +646,8 @@ jobs:
|
|||
path: /workflows/testlogs
|
||||
- store_artifacts:
|
||||
path: /workflows/artifacts
|
||||
- store_artifacts:
|
||||
path: vmstat.out
|
||||
- run:
|
||||
command: rosetta run finalization
|
||||
environment:
|
||||
|
@ -914,6 +922,8 @@ jobs:
|
|||
path: /workflows/testlogs
|
||||
- store_artifacts:
|
||||
path: /workflows/artifacts
|
||||
- store_artifacts:
|
||||
path: vmstat.out
|
||||
- run:
|
||||
command: rosetta run finalization
|
||||
environment:
|
||||
|
|
Loading…
Reference in New Issue