Skip to content

Release version v1.5.0 #3

Release version v1.5.0

Release version v1.5.0 #3

Workflow file for this run

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