summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRICCIARDI-Adrien <adrien.ricciardi@hotmail.fr>2020-12-31 14:08:10 +0100
committerRICCIARDI-Adrien <adrien.ricciardi@hotmail.fr>2021-01-01 16:59:00 +0100
commit01312898eedc2c1e97bdf525381b0987c8e8b0b1 (patch)
tree98801243e4420d3a038756f37804c323c1411651 /.github
parentf494dfbb02cbf92b0c065d65c8a1dc3edcd80adb (diff)
downloadppp-01312898eedc2c1e97bdf525381b0987c8e8b0b1.tar.gz
Enabled PPPD package in Buildroot defconfig.
Signed-off-by: RICCIARDI-Adrien <adrien.ricciardi@hotmail.fr>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/buildroot.yaml12
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/buildroot.yaml b/.github/workflows/buildroot.yaml
index b7e8042..a80353b 100644
--- a/.github/workflows/buildroot.yaml
+++ b/.github/workflows/buildroot.yaml
@@ -4,6 +4,9 @@ on: [push]
jobs:
matrix_build:
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ defconfig_name: [qemu_x86_defconfig, qemu_x86_64_defconfig]
steps:
- name: Checkout Buildroot sources
run: git clone --depth=1 --branch=2020.11.1 https://git.busybox.net/buildroot
@@ -18,6 +21,9 @@ jobs:
sed -i '/PPPD_VERSION =/c\\PPPD_VERSION = master' pppd.mk
sed -i '/PPPD_SITE =/c\\PPPD_SITE = https://github.com/paulusmack/ppp' pppd.mk
sed -i '9iPPPD_MUSL_SITE_METHOD = git' pppd.mk
- ls
- cat Config.in
- cat pppd.mk
+ - name: Enable PPP build
+ working-directory: buildroot
+ run: |
+ echo "BR2_PACKAGE_PPPD=y" >> configs/${{ matrix.defconfig_name }}
+ # TODO enable other PPP package options if needed
+ cat configs/${{ matrix.defconfig_name }}