Skip to content

Update README and github workflows #14

Update README and github workflows

Update README and github workflows #14

Workflow file for this run

name: WFB-ng package builder for RPI and NanoPI
on:
push:
branches: [ master, release-23.08 ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master, stable ]
jobs:
build_and_test:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
docker-images:
- "2023-02-21-raspios-bullseye-armhf-lite"
- "2023-02-21-raspios-bullseye-arm64-lite"
- "armbian_23.02.2_nanopineo_jammy_current_5.15.93"
- "armbian_23.02.1_nanopineo2_jammy_current_5.15.93"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: build package
run: |
curl -s -L https://github.com/svpcom/wfb-ng/releases/download/wifibroadcast-17.10/qemu-9.0.2-fixed.tar.gz | sudo tar xzv -C /
make deb_docker DOCKER_SRC_IMAGE=p2ptech/cross-build:${{ matrix.docker-images }}
- name: Archive production artifacts
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: wfb-ng-${{ github.ref_name }}-${{ matrix.docker-images }}
path: |
deb_dist/*.deb
- name: Output artifact URL
run: echo 'wfb-ng-${{ github.ref_name }}-${{ matrix.docker-images }} ${{ steps.artifact-upload-step.outputs.artifact-url }}'