-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1.07 KB
/
report-bin-size.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
name: Report Binsize Treemap
# yamllint disable rule:line-length
on: # yamllint disable-line rule:truthy
workflow_dispatch:
jobs:
report-binsize-treemap:
name: Report Binsize Treemap
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Fixup git permissions
# https://github.com/actions/checkout/issues/766
shell: bash
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Install go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: "go.mod"
cache: true
cache-dependency-path: go.sum
- name: Create Binsize Report
run: make manager-core report-binsize-treemap-all
- name: Upload Report
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: reports-${{ github.sha }}
path: .reports
retention-days: 90