60
60
- name : List of all installed packages
61
61
run : dpkg -l | cat || true
62
62
63
- - name : Show system status
64
- run : |
65
- cat /etc/debian_version
66
- lsb_release -a
67
- yacc --version | head -n 1
68
- gcc --version | head -n 1
69
- g++ --version | head -n 1
70
- make --version | head -n 1
71
- git --version | head -n 1
72
- gawk --version | head -n 1
73
- bash --version | head -n 1
74
- uname -a
75
- id -a
76
- echo "CWD is `pwd`"
77
- echo "PATH is $PATH"
78
- echo "Hostname is `hostname`"
79
- sudo lscpu || true
80
- uptime
81
- sudo /sbin/ip a || true
82
- df -h .
63
+ - name : Show build system info
64
+ run : bash build/show-sys-info
83
65
84
66
- name : Show native SDL2 status
85
67
run : |
@@ -132,9 +114,6 @@ jobs:
132
114
if : env.should_deploy == 'true'
133
115
run : ls -l build/bin/*.win32
134
116
135
- - name : Uptime/load so far
136
- run : uptime
137
-
138
117
- name : Deployment
139
118
if : env.should_deploy == 'true'
140
119
run : |
@@ -187,22 +166,8 @@ jobs:
187
166
- name : Install build/deployment dependencies
188
167
run : build/install-dependencies-osx.sh
189
168
190
- - name : Show system status
191
- run : |
192
- sw_vers || true
193
- gcc --version | head -n 1
194
- g++ --version | head -n 1
195
- make --version | head -n 1
196
- git --version | head -n 1
197
- bash --version | head -n 1
198
- uname -a
199
- id -a
200
- echo "CWD is `pwd`"
201
- echo "PATH is $PATH"
202
- echo "Hostname is `hostname`"
203
- uptime
204
- ifconfig || true
205
- df -h .
169
+ - name : Show build system info
170
+ run : bash build/show-sys-info
206
171
207
172
- name : Show Mac SDL2 status
208
173
run : |
@@ -218,9 +183,6 @@ jobs:
218
183
- name : List of result binaries for Mac (x86 native target)
219
184
run : ls -l build/bin/*.native
220
185
221
- - name : Uptime/load so far
222
- run : uptime
223
-
224
186
- name : Deployment
225
187
if : env.should_deploy == 'true'
226
188
run : |
0 commit comments