Skip to content

Commit

Permalink
[CI] Use DEBUG log level during CMake configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
amadio committed Jun 5, 2023
1 parent fcd4910 commit 43a59b8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
run: |
cd ..
cmake \
--log-level=DEBUG \
-DCMAKE_CXX_STANDARD=17 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
Expand Down Expand Up @@ -156,6 +157,7 @@ jobs:
run: |
cd ..
cmake \
--log-level=DEBUG \
-DCMAKE_CXX_STANDARD=17 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
Expand Down Expand Up @@ -235,6 +237,7 @@ jobs:
# need to fix ownership not to confuse git
chown -R -v "$( id -u; ):$( id -g; )" xrootd
cmake \
--log-level=DEBUG \
-DCMAKE_CXX_STANDARD=17 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
Expand Down Expand Up @@ -314,6 +317,7 @@ jobs:
. /opt/rh/devtoolset-7/enable
cd ..
cmake3 \
--log-level=DEBUG \
-DCMAKE_INSTALL_PREFIX=/usr/local/ \
-DPython_EXECUTABLE=$(command -v python3) \
-DENABLE_TESTS=ON \
Expand Down Expand Up @@ -387,6 +391,7 @@ jobs:
. /opt/rh/devtoolset-7/enable
cd ..
cmake3 \
--log-level=DEBUG \
-DCMAKE_INSTALL_PREFIX=/usr/local/ \
-DPython_EXECUTABLE=$(command -v python3) \
-DENABLE_TESTS=ON \
Expand Down Expand Up @@ -457,6 +462,7 @@ jobs:
. /opt/rh/devtoolset-7/enable
cd ..
cmake3 \
--log-level=DEBUG \
-DCMAKE_INSTALL_PREFIX=/usr/ \
-DPython_EXECUTABLE=$(command -v python2) \
-DENABLE_TESTS=ON \
Expand Down Expand Up @@ -521,6 +527,7 @@ jobs:
run: |
cd ..
cmake \
--log-level=DEBUG \
-DCMAKE_INSTALL_PREFIX=/usr \
-DPython_EXECUTABLE=$(command -v python3) \
-DENABLE_TESTS=ON \
Expand Down Expand Up @@ -586,6 +593,7 @@ jobs:
sudo sed -i -e "s/localhost/localhost $(hostname)/g" /etc/hosts
cd ..
cmake \
--log-level=DEBUG \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_INSTALL_PREFIX=/usr/local/ \
Expand Down

0 comments on commit 43a59b8

Please sign in to comment.