diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-10-04 18:38:57 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-12-04 17:36:56 +0100 |
commit | 8bbaa486cb6b7e816dc6931bcb0946786568f1d6 (patch) | |
tree | 84b1e296b9a7e1314765cbf39d9bd8a0a34d3f7f /.github/workflows | |
parent | c2df98c49c463f5913299040f1c91d56ecda3010 (diff) | |
download | upstream-8bbaa486cb6b7e816dc6931bcb0946786568f1d6.tar.gz upstream-8bbaa486cb6b7e816dc6931bcb0946786568f1d6.tar.bz2 upstream-8bbaa486cb6b7e816dc6931bcb0946786568f1d6.zip |
CI: tools: compile tools with ccache support for tools container
Enable ccache support for tools container, useful to speedup other
workflow even more.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
(cherry picked from commit 2781e3839e7f4f6132a2737ee9f988f40fa58d99)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/tools.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 573bb468b9..f483615363 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -110,7 +110,7 @@ jobs: run: | chown -R buildbot:buildbot openwrt - - name: Set AUTOREMOVE config for tools container + - name: Set configs for tools container if: github.event_name == 'push' shell: su buildbot -c "sh -e {0}" working-directory: openwrt @@ -118,6 +118,7 @@ jobs: touch .config echo CONFIG_DEVEL=y >> .config echo CONFIG_AUTOREMOVE=y >> .config + echo CONFIG_CCACHE=y >> .config - name: Make prereq shell: su buildbot -c "sh -e {0}" |