Skip to content

Commit

Permalink
Make ccache treat omrcfg.h as a dependency for every object
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Young <rwy0717@gmail.com>
  • Loading branch information
rwy7 committed Dec 3, 2019
1 parent 86c0b09 commit b17e3eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions buildenv/jenkins/jobs/builds/Build-aix_ppc-64
Expand Up @@ -33,15 +33,15 @@ pipeline {
timestamps {
echo 'Output CCACHE stats before running and clear them'
sh '''ccache -s -z'''

dir('build') {
echo 'Configure...'
sh '''cmake -Wdev -DCMAKE_XL_CreateExportList="/usr/vac/bin/CreateExportList -X64" -DOMR_DDR=OFF -C../cmake/caches/Travis.cmake ..'''

echo 'Compile...'
sh '''make -j8'''
sh '''export CCACHE_EXTRAFILES="$PWD/omrcfg.h" && make -j8'''
}

echo 'Output CCACHE stats after running'
sh '''ccache -s'''
}
Expand Down
8 changes: 4 additions & 4 deletions buildenv/jenkins/jobs/pull-requests/PullRequest-aix_ppc-64
Expand Up @@ -19,15 +19,15 @@ pipeline {
timestamps {
echo 'Output CCACHE stats before running and clear them'
sh '''ccache -s -z'''

dir('build') {
echo 'Configure...'
sh '''cmake -Wdev -DCMAKE_XL_CreateExportList="/usr/vac/bin/CreateExportList -X64" -DOMR_DDR=OFF -C../cmake/caches/Travis.cmake ..'''

echo 'Compile...'
sh '''make -j4'''
sh '''export CCACHE_EXTRAFILES="$PWD/omrcfg.h" && make -j4'''
}

echo 'Output CCACHE stats after running'
sh '''ccache -s'''
}
Expand Down

0 comments on commit b17e3eb

Please sign in to comment.