| 12345678910111213141516171819202122 |
- name: change clang variables to ccache clang
- description: change clang cariable to ccache clang
- runs:
- using: composite
- steps:
- - name: change variables
- shell: bash
- run: |
- cd "$CONFIG"
- if [[ -d kernel_platform ]]; then
- cd kernel_platform
- touch .bazelrc
- cat >> .bazelrc << 'EOF'
- build --disk_cache=${{ env.BCACHE_DIR }}
- EOF
- else
- touch .bazelrc
- cat >> .bazelrc << 'EOF'
- build --disk_cache=${{ env.BCACHE_DIR }}
- EOF
- fi
|