Skip to content

Commit

Permalink
show what the number is for
Browse files Browse the repository at this point in the history
  • Loading branch information
nobuto-m committed Feb 13, 2025
1 parent 8d69c35 commit c619056
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/multi-node-ha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ env:
defaults:
run:
# act doesn't show a good summary of elapsed time of each step
shell: /usr/bin/time -f 'real\t%E' /bin/bash -ex {0}
shell: /usr/bin/time -f 'step: real\t%E' /bin/bash -ex {0}

jobs:
actionlint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multi-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ env:
defaults:
run:
# act doesn't show a good summary of elapsed time of each step
shell: /usr/bin/time -f 'real\t%E' /bin/bash -ex {0}
shell: /usr/bin/time -f 'step: real\t%E' /bin/bash -ex {0}

jobs:
actionlint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/single-node-guided.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
defaults:
run:
# act doesn't show a good summary of elapsed time of each step
shell: /usr/bin/time -f 'real\t%E' /bin/bash -ex {0}
shell: /usr/bin/time -f 'step: real\t%E' /bin/bash -ex {0}

jobs:
actionlint:
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ prerequisites:

.PHONY: single-node-guided
single-node-guided:
/usr/bin/time -f 'real\t%E' act \
/usr/bin/time -f 'workflow: real\t%E' act \
-P ubuntu-latest=-self-hosted \
-P ubuntu-24.04=-self-hosted \
--artifact-server-path .artifacts \
-W .github/workflows/single-node-guided.yml

.PHONY: multi-node
multi-node:
/usr/bin/time -f 'real\t%E' act \
/usr/bin/time -f 'workflow: real\t%E' act \
-P ubuntu-latest=-self-hosted \
-P ubuntu-24.04=-self-hosted \
--artifact-server-path .artifacts \
-W .github/workflows/multi-node.yml

.PHONY: multi-node-ha
multi-node-ha:
/usr/bin/time -f 'real\t%E' act \
/usr/bin/time -f 'workflow: real\t%E' act \
-P ubuntu-latest=-self-hosted \
-P ubuntu-24.04=-self-hosted \
--artifact-server-path .artifacts \
Expand Down

0 comments on commit c619056

Please sign in to comment.