Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/action/setup-ccache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ runs:
echo "CMAKE_GENERATOR=Ninja" >> $GITHUB_ENV
echo "CMAKE_C_COMPILER_LAUNCHER=ccache" >> $GITHUB_ENV
echo "CMAKE_CXX_COMPILER_LAUNCHER=ccache" >> $GITHUB_ENV

- if: runner.os == 'Windows'
shell: bash
run: |
echo "CCACHE_SLOPPINESS=include_file_mtime,include_file_ctime,time_macros,pch_defines,file_stat_matches" >> $env:GITHUB_ENV
echo "CCACHE_BASEDIR=$(pwd)" >> $env:GITHUB_ENV
- shell: bash
run: |
set -e
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,12 @@ jobs:
ccache-${{ runner.os }}-build-

- run: npm run build
shell: bash

- name: run test for windows
run: |
npm run test:as
shell: bash
run: npm run test:as

- name: verify ccache stats
run: ccache --show-stats
shell: bash