Skip to content

Commit

Permalink
Fix ccache dir in CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
lballabio committed Aug 25, 2022
1 parent 867361b commit 6b4c9c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/linux-full-tests.yml
Expand Up @@ -170,6 +170,8 @@ jobs:
run: |
${{ matrix.cc }} --version
- name: Build
env:
CCACHE_DIR: ~/.ccache
run: |
./autogen.sh
./configure --disable-static ${{ matrix.configureflags }} CC="ccache ${{ matrix.cc }}" CXX="ccache ${{ matrix.cxx }}" CXXFLAGS="-O2 -g0 -Wall -Wno-unknown-pragmas -Werror ${{ matrix.cxxflags }}"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/linux-nondefault.yml
Expand Up @@ -141,6 +141,8 @@ jobs:
run: |
${{ matrix.cc }} --version
- name: Build
env:
CCACHE_DIR: ~/.ccache
run: |
./autogen.sh
./configure --disable-static --enable-error-lines --enable-error-functions --enable-tracing --enable-indexed-coupons --enable-extra-safety-checks --enable-sessions --enable-thread-safe-observer-pattern --enable-intraday ${{ matrix.configureflags }} CC="ccache ${{ matrix.cc }}" CXX="ccache ${{ matrix.cxx }}" CXXFLAGS="-O2 -g0 -Wall -Wno-unknown-pragmas -Werror ${{ matrix.cxxflags }}"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/linux.yml
Expand Up @@ -186,6 +186,8 @@ jobs:
run: |
${{ matrix.cc }} --version
- name: Build
env:
CCACHE_DIR: ~/.ccache
run: |
./autogen.sh
./configure --disable-static ${{ matrix.configureflags }} CC="ccache ${{ matrix.cc }}" CXX="ccache ${{ matrix.cxx }}" CXXFLAGS="-O2 -g0 -Wall -Wno-unknown-pragmas -Werror ${{ matrix.cxxflags }}"
Expand Down

0 comments on commit 6b4c9c5

Please sign in to comment.