Skip to content

Regenerate ccache

Regenerate ccache #8

Workflow file for this run

name: Regenerate ccache
on:
workflow_dispatch:
schedule:
- cron: '0 0 1 * *' # every month
concurrency:
group: ${{ github.repository_id }}-${{ github.workflow }}-${{ github.sha }}
cancel-in-progress: true
jobs:
ccache-regen:
runs-on: ci-runner-compiler
container:
image: matterlabs/llvm_runner:ubuntu22-llvm17-latest
options: -m 110g
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build LLVM
uses: matter-labs/era-compiler-ci/.github/actions/build-llvm@v1
with:
extra-args: "\\-DLLVM_ENABLE_WERROR=On \\-DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
enable-tests: true
enable-assertions: true
save-ccache: true