forked from matter-labs/era-compiler-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (89 loc) · 3.55 KB
/
ccache-regen.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: Ccache regen
on:
workflow_dispatch:
schedule:
- cron: '0 20 * * *' # each day at 8 PM GMT
# Cancel the workflow if any new changes pushed to a feature branch or the trunk
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
cleanup-ccache:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Clean up cache
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh cache list
gh cache delete --all || true
regen-ccache:
needs: cleanup-ccache
strategy:
fail-fast: false # finalize testing of all targets even if one failed
matrix:
include:
- name: "MacOS x86"
runner: macos-12-large
- name: "MacOS arm64"
runner: [self-hosted, macOS, ARM64]
- name: "Linux x86 gnu"
runner: matterlabs-ci-runner-high-performance
image: ghcr.io/matter-labs/zksync-llvm-runner:latest
target: "x86_64-unknown-linux-gnu"
- name: "Linux ARM64 gnu"
runner: matterlabs-ci-runner-arm
image: ghcr.io/matter-labs/zksync-llvm-runner:latest
target: "aarch64-unknown-linux-gnu"
- name: "Linux x86 musl"
runner: matterlabs-ci-runner-high-performance
image: ghcr.io/matter-labs/zksync-llvm-runner:latest
target: "x86_64-unknown-linux-musl"
- name: "Linux ARM64 musl"
runner: matterlabs-ci-runner-arm
image: ghcr.io/matter-labs/zksync-llvm-runner:latest
target: "aarch64-unknown-linux-musl"
- name: "Windows"
runner: windows-2022-github-hosted-16core
target: "x86_64-pc-windows-gnu"
runs-on: ${{ matrix.runner }}
container:
image: ${{ matrix.image || '' }} # Special workaround to allow matrix builds with optional container
name: ${{ matrix.name }}
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Prepare Windows env
if: runner.os == 'Windows'
uses: matter-labs/era-compiler-ci/.github/actions/prepare-msys@v1
- name: Build LLVM for tests
uses: matter-labs/era-compiler-ci/.github/actions/build-llvm@v1
with:
target-env: ${{ contains(matrix.target, 'musl') && 'musl' || 'gnu' }}
enable-assertions: 'true'
build-type: RelWithDebInfo
save-ccache: 'false'
ccache-key: ${{ format('llvm-{0}-{1}-{2}', runner.os, runner.arch, contains(matrix.target, 'musl') && 'musl' || 'gnu') }}
- name: Delete libstdc++a
if: runner.os == 'Windows'
shell: 'msys2 {0}'
run: rm -f target-llvm/target-final/lib/libstdc++.a
- name: Build LLVM for releases
uses: matter-labs/era-compiler-ci/.github/actions/build-llvm@v1
with:
target-env: ${{ contains(matrix.target, 'musl') && 'musl' || 'gnu' }}
enable-assertions: 'false'
build-type: Release
save-ccache: 'true'
clone-llvm: 'false'
ccache-key: ${{ format('llvm-{0}-{1}-{2}', runner.os, runner.arch, contains(matrix.target, 'musl') && 'musl' || 'gnu') }}
- name: Cargo checks
uses: matter-labs/era-compiler-ci/.github/actions/cargo-check@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Run tests
uses: matter-labs/era-compiler-ci/.github/actions/rust-unit-tests@v1
with:
target: ${{ matrix.target || '' }}