Skip to content

Commit

Permalink
ci: fix ccache regeneration workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Jun 11, 2024
1 parent 8dfaed6 commit 48f0dc8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ccache-regen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Regenerate ccache
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every month
- cron: '0 0 1 * *' # every month

concurrency:
group: ${{ github.repository_id }}-${{ github.workflow }}-${{ github.sha }}
Expand All @@ -18,8 +18,11 @@ jobs:
options: -m 110g
steps:

- name: Checkout
uses: actions/checkout@v4

- name: Build LLVM
uses: matter-labs/era-compiler-ci/.github/actions/build-llvm@main
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
Expand Down

0 comments on commit 48f0dc8

Please sign in to comment.