-
Notifications
You must be signed in to change notification settings - Fork 158
33 lines (29 loc) · 884 Bytes
/
l4t.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
name: Build l4t
on:
push:
branches: ["yoga"]
workflow_dispatch:
jobs:
build-deb:
strategy:
fail-fast: false
matrix:
release: [ switchroot-bionic ]
runs-on: ubuntu-latest
steps:
- name: Checkout wiliwili
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Build docker
run: docker build -t build:${{ matrix.release }} scripts/deb/${{ matrix.release }}
- name: Build wiliwili
run: docker run --rm -u $(id -u):$(id -g) -v $PWD:/opt build:${{ matrix.release }} bash /opt/scripts/deb/${{ matrix.release }}/build.sh
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: wiliwili-Linux-${{ matrix.release }}
path: wiliwili-*.deb