Skip to content
Snippets Groups Projects
Commit 7bfe3ec6 authored by David Bauer's avatar David Bauer
Browse files

ci: collect basic system information


Collect some basic system information about the runners the CI jobs
run on. This is done iwth the intention to have diagnostics information
in advance in case builds fail spuriously in some instances.

Signed-off-by: default avatarDavid Bauer <mail@david-bauer.net>
parent 3d81f519
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Show system information
run: contrib/actions/show-system-info.sh
- name: Install Dependencies
run: sudo contrib/actions/install-dependencies.sh
......
#!/bin/bash
echo "-- CPU --"
cat /proc/cpuinfo
echo "-- Memory --"
cat /proc/meminfo
echo "-- Disk --"
df -h
echo "-- Kernel --"
uname -a
echo "-- Network --"
ip addr
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment