forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 2
22 lines (22 loc) · 855 Bytes
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: build
on: [push]
jobs:
dt-binding-check:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update
- run: sudo apt-get install -y libyaml-dev
#- run: pip3 install --user -vvv git+https://github.com/devicetree-org/dt-schema.git@main
- run: sudo pip3 install dtschema
#- run: pwd; echo ~; ls -lh ~/.local/bin # DEBUG
- uses: actions/checkout@v2
- run: make ARCH=arm W=1 wpcm450_defconfig
- run: make ARCH=arm W=1 dt_binding_check -j$(nproc || echo 1)
build:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update
- run: sudo apt-get install -y gcc-arm-linux-gnueabi
- uses: actions/checkout@v2
- run: make ARCH=arm W=1 CROSS_COMPILE=arm-linux-gnueabi- wpcm450_defconfig
- run: make ARCH=arm W=1 CROSS_COMPILE=arm-linux-gnueabi- -j$(nproc || echo 1)