We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f4d02b commit ea97fb9Copy full SHA for ea97fb9
.github/workflows/build.yml
@@ -205,12 +205,15 @@ jobs:
205
- name: Version info
206
run: |
207
echo == TOOL VERSIONS ==
208
- echo PATH="$PATH"
209
- set -x
+ echo Platform version info:
210
uname -a
211
- if test -r /etc/os-release ; then cat /etc/os-release ; fi
212
- ${FPM_FC} --version
213
- fpm --version
+ if test -r /etc/os-release ; then grep -e NAME -e VERSION /etc/os-release ; fi
+ if test -x /usr/bin/sw_vers ; then /usr/bin/sw_vers ; fi
+ echo
+ echo PATH="$PATH"
214
+ for tool in ${FPM_FC} fpm ; do
215
+ ( echo ; set -x ; w=$(which $tool) ; ls -al $w ; ls -alhL $w ; $tool --version )
216
+ done
217
218
- name: Build and Test (Assertions OFF)
219
0 commit comments