-
Notifications
You must be signed in to change notification settings - Fork 3
73 lines (62 loc) · 1.93 KB
/
powerpc-sparse.yml
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
name: powerpc/sparse
# Controls when the action will run.
on:
# This allows the build to be triggered manually via the github UI.
workflow_dispatch:
push:
# This triggers the build on a push to any branch named ci/powerpc/<something>
branches:
- '**'
# As long as one of these paths matches
paths:
- '!tools/**' # ignore tools
- '!samples/**' # ignore samples
- '!Documentation/**' # ignore Documentation
- '!arch/**' # ignore arch changes
- 'arch/powerpc/**' # but not arch/powerpc
- 'arch/Kconfig' # or common bits in arch
- '**' # anything else triggers a build
jobs:
sparse:
runs-on: ubuntu-latest
strategy:
matrix:
defconfig: [ppc64, pmac32, mpc885_ads_defconfig]
image: [ubuntu-22.04]
subarch: [ppc64]
include:
- subarch: ppc64le
defconfig: ppc64le
image: ubuntu-22.04
env:
ARCH: powerpc
TARGET: kernel
CCACHE: 1
SPARSE: 2
SUBARCH: ${{ matrix.subarch }}
IMAGE: ${{ matrix.image }}
DEFCONFIG: ${{ matrix.defconfig }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Register problem matchers
run: |
echo "::add-matcher::.github/problem-matchers/compiler-source.json"
echo "::add-matcher::.github/problem-matchers/compiler-non-source.json"
- name: Load ccache
uses: actions/cache@v3
with:
path: ~/.ccache
key: ${{ matrix.image }}-${{ matrix.subarch }}-${{ matrix.defconfig }}
- name: Build
run: |
mkdir -p ~/.ccache
./arch/powerpc/tools/ci-build.sh
- name: powerpc sparse errors
run: grep /linux/arch/powerpc ~/output/sparse.log
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: sparse-${{ matrix.defconfig }}-${{ matrix.image }}.log
path: |
~/output/sparse.log