feat: add runner stats
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 4s
CI Workflow / Test STACKIT runner (pull_request) Failing after 4m50s
CI Workflow / Code coverage report (pull_request) Has been cancelled
CI Workflow / Test readiness for publishing provider (pull_request) Has been cancelled
CI Workflow / CI run tests (pull_request) Has been cancelled
CI Workflow / CI run build and linting (pull_request) Has been cancelled
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 4s
CI Workflow / Test STACKIT runner (pull_request) Failing after 4m50s
CI Workflow / Code coverage report (pull_request) Has been cancelled
CI Workflow / Test readiness for publishing provider (pull_request) Has been cancelled
CI Workflow / CI run tests (pull_request) Has been cancelled
CI Workflow / CI run build and linting (pull_request) Has been cancelled
Signed-off-by: marcel.henselin <marcel.henselin@stackit.cloud>
This commit is contained in:
parent
eb13630d2f
commit
1d896fc809
1 changed files with 29 additions and 0 deletions
29
.github/workflows/runnerstats.yaml
vendored
Normal file
29
.github/workflows/runnerstats.yaml
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
name: Runner stats
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
stats-own:
|
||||||
|
name: "Get own runner stats"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install needed tools
|
||||||
|
run: |
|
||||||
|
apt-get -y -qq update
|
||||||
|
apt-get -y -qq install inxi
|
||||||
|
|
||||||
|
- name: Show stats
|
||||||
|
run: inxi
|
||||||
|
|
||||||
|
stats-stackit:
|
||||||
|
name: "Get STACKIT runner stats"
|
||||||
|
runs-on: stackit-docker
|
||||||
|
steps:
|
||||||
|
- name: Install needed tools
|
||||||
|
run: |
|
||||||
|
apt-get -y -qq update
|
||||||
|
apt-get -y -qq install inxi
|
||||||
|
|
||||||
|
- name: Show stats
|
||||||
|
run: inxi
|
||||||
Loading…
Add table
Add a link
Reference in a new issue