Skip to content

Commit

Permalink
[actions] in actions manual.sh, export USECCACHE=1 to enable ccache i…
Browse files Browse the repository at this point in the history
…n madgraph4gpu - and also dump ccache status before/after the builds
  • Loading branch information
valassi committed Oct 31, 2023
1 parent 2a14c5c commit 5570c7f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/manual.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,17 +100,23 @@ if [ "$stage" == "tput" ]; then
echo
echo "ccache --version | head -1"
ccache --version | head -1
# Dump ccache status before the builds
echo
echo "ccache -s"
echo "ccache -s (before the builds)"
ccache -s
# Configure CXX
echo
echo "g++ --version"
g++ --version
export CXX=g++
# Build and test
export USECCACHE=1 # enable ccache in madgraph4gpu builds
echo "./tput/teeThroughputX.sh -makej -ggtt -makeclean"
./tput/teeThroughputX.sh -makej -ggtt -makeclean
# Dump ccache status after the builds
echo
echo "ccache -s (after the builds)"
ccache -s
fi

# Finalise
Expand Down

0 comments on commit 5570c7f

Please sign in to comment.