From 447f10b843996d06182cf466585c480d0617be19 Mon Sep 17 00:00:00 2001 From: Anton Baliasnikov Date: Fri, 24 Jan 2025 13:23:01 +0000 Subject: [PATCH 1/2] ci: lnt support --- .../benchmarks-integration-tests.yml | 0 .github/{workflows => }/coverage.yml | 0 .github/{workflows => }/regression-tests.yml | 0 .github/{workflows => }/scheduled.yml | 0 .github/workflows/lnt-benchmarks.yml | 19 +++++++++++++++++++ 5 files changed, 19 insertions(+) rename .github/{workflows => }/benchmarks-integration-tests.yml (100%) rename .github/{workflows => }/coverage.yml (100%) rename .github/{workflows => }/regression-tests.yml (100%) rename .github/{workflows => }/scheduled.yml (100%) create mode 100644 .github/workflows/lnt-benchmarks.yml diff --git a/.github/workflows/benchmarks-integration-tests.yml b/.github/benchmarks-integration-tests.yml similarity index 100% rename from .github/workflows/benchmarks-integration-tests.yml rename to .github/benchmarks-integration-tests.yml diff --git a/.github/workflows/coverage.yml b/.github/coverage.yml similarity index 100% rename from .github/workflows/coverage.yml rename to .github/coverage.yml diff --git a/.github/workflows/regression-tests.yml b/.github/regression-tests.yml similarity index 100% rename from .github/workflows/regression-tests.yml rename to .github/regression-tests.yml diff --git a/.github/workflows/scheduled.yml b/.github/scheduled.yml similarity index 100% rename from .github/workflows/scheduled.yml rename to .github/scheduled.yml diff --git a/.github/workflows/lnt-benchmarks.yml b/.github/workflows/lnt-benchmarks.yml new file mode 100644 index 000000000000..8262c1705130 --- /dev/null +++ b/.github/workflows/lnt-benchmarks.yml @@ -0,0 +1,19 @@ +name: LNT benchmarks + +on: + pull_request: + +concurrency: + group: ${{ github.repository_id }}-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + + lnt-benchmarks: + uses: matter-labs/era-compiler-ci/.github/workflows/lnt.yml@aba-lnt-support + secrets: inherit + with: + compiler_tester_branch: "aba-lnt-support" + compiler_llvm_branch: ${{ github.head_ref }} + ccache-key-type: 'static' # rotate ccache key every month + compiler-llvm-repo: ${{ github.event.pull_request.head.repo.full_name }} # required to properly test forks From bba61668dc9f8ef277e9d87b225c6ba6fcf4e6d6 Mon Sep 17 00:00:00 2001 From: Anton Baliasnikov Date: Tue, 28 Jan 2025 11:04:08 +0000 Subject: [PATCH 2/2] test --- .github/workflows/lnt-benchmarks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lnt-benchmarks.yml b/.github/workflows/lnt-benchmarks.yml index 8262c1705130..f103878e88ea 100644 --- a/.github/workflows/lnt-benchmarks.yml +++ b/.github/workflows/lnt-benchmarks.yml @@ -15,5 +15,5 @@ jobs: with: compiler_tester_branch: "aba-lnt-support" compiler_llvm_branch: ${{ github.head_ref }} - ccache-key-type: 'static' # rotate ccache key every month + ccache-key: 'llvm-Linux-X64-gnu' compiler-llvm-repo: ${{ github.event.pull_request.head.repo.full_name }} # required to properly test forks