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 e86c474 commit 54f2dcaCopy full SHA for 54f2dca
.github/workflows/build.yml
@@ -197,10 +197,14 @@ jobs:
197
- name: Version info
198
run: |
199
echo == TOOL VERSIONS ==
200
- (set -x ; uname -a )
201
- if test -r /etc/os-release ; then (set -x ; cat /etc/os-release ) ; fi
+ echo Platform version info:
+ uname -a
202
+ if test -r /etc/os-release ; then grep -e NAME -e VERSION /etc/os-release ; fi
203
+ if test -x /usr/bin/sw_vers ; then /usr/bin/sw_vers ; fi
204
+ echo
205
+ echo PATH="$PATH"
206
for tool in ${FC} ${CC} ${CXX} fpm ; do
- ( set -x ; w=$(which $tool) ; ls -al $w ; ls -alhL $w ; $tool --version )
207
+ ( echo ; set -x ; w=$(which $tool) ; ls -al $w ; ls -alhL $w ; $tool --version )
208
done
209
210
- name: Build Caffeine (install.sh)
0 commit comments