summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yaml7
-rw-r--r--.github/workflows/monkey-test.yaml7
-rw-r--r--.github/workflows/static-analysis.yaml7
3 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 13b59c38b..eb92cdda1 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -31,6 +31,7 @@ jobs:
sudo apt-get install --no-install-recommends -y
bison
build-essential
+ ccache
check
clang
flex
@@ -46,6 +47,12 @@ jobs:
pkg-config
wbritish # Needed for `/usr/share/dict/words`, used by test
+ - name: ccache
+ uses: hendrikmuhs/ccache-action@v1.2
+ with:
+ key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.compiler.vendor }}
+ max-size: 128M
+
- name: Build and install project libs
env:
CC: ${{ matrix.compiler.CC }}
diff --git a/.github/workflows/monkey-test.yaml b/.github/workflows/monkey-test.yaml
index 421bf3b50..e95c9796f 100644
--- a/.github/workflows/monkey-test.yaml
+++ b/.github/workflows/monkey-test.yaml
@@ -23,6 +23,7 @@ jobs:
sudo apt-get install --no-install-recommends -y
bison
build-essential
+ ccache
check
clang
flex
@@ -38,6 +39,12 @@ jobs:
pkg-config
wbritish # Needed for `/usr/share/dict/words`, used by test
+ - name: ccache
+ uses: hendrikmuhs/ccache-action@v1.2
+ with:
+ key: ${{ github.job }}
+ max-size: 128M
+
- name: Build and install project libs
run: |
export TARGET_WORKSPACE="$(pwd)/projects"
diff --git a/.github/workflows/static-analysis.yaml b/.github/workflows/static-analysis.yaml
index 5027d0510..8604761fe 100644
--- a/.github/workflows/static-analysis.yaml
+++ b/.github/workflows/static-analysis.yaml
@@ -23,6 +23,7 @@ jobs:
sudo apt-get install --no-install-recommends -y
bison
build-essential
+ ccache
flex
git
gperf
@@ -34,6 +35,12 @@ jobs:
librsvg2-dev
pkg-config
+ - name: ccache
+ uses: hendrikmuhs/ccache-action@v1.2
+ with:
+ key: ${{ github.job }}
+ max-size: 128M
+
- name: Build and install project libs
run: |
export TARGET_WORKSPACE="$(pwd)/projects"