Show build environment and compiler version for Mac CI builds

This is similar to 6e96c6dda0 (Add "Show build environment" step,
2021-10-27) done for the Unix CI builds.
This commit is contained in:
Vadim Zeitlin 2021-12-15 16:02:54 +01:00
parent 28c3605f6b
commit e2d13c2d94

View file

@ -149,6 +149,16 @@ jobs:
./build/tools/before_install.sh
mkdir -p $PWD/localbin_${{ matrix.arch }}
- name: Show build environment
run: |
echo "Environment:"
env | sort
echo
echo "Compiler version:"
${CXX-g++} --version
echo
- name: Configuring
run: |
wxCONFIGURE_OPTIONS="--disable-optimise $wxCONFIGURE_FLAGS"