Skip to content

Commit

Permalink
Merge pull request rauc#84 from ejoerns/ci-workflows-qemux86-rpi-kirk…
Browse files Browse the repository at this point in the history
…stone

Add Minimal Github Action Workflows For qemux86 and raspberrypi [kirkstone]
  • Loading branch information
leon-anavi authored Mar 28, 2024
2 parents 7dc325a + f4893da commit 0b0d803
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/meta-rauc-qemux86.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: meta-rauc-qemux86 CI

on:
# Trigger the workflow on push or pull request,
# but only for the kirkstone branch
push:
branches:
- kirkstone
paths:
- 'meta-rauc-qemux86/**'
pull_request:
branches:
- kirkstone
paths:
- 'meta-rauc-qemux86/**'
jobs:
build:
name: meta-rauc-qemux86 Build
runs-on: ubuntu-20.04
steps:
- name: Install required packages
run: |
sudo apt-get install diffstat
- name: Checkout
uses: actions/checkout@v3
- name: Clone poky
run: git clone -b kirkstone git://git.yoctoproject.org/poky
- name: Clone meta-rauc
run: git clone -b kirkstone https://github.com/rauc/meta-rauc.git
- name: Initialize build directory
run: |
source poky/oe-init-build-env build
bitbake-layers add-layer ../meta-rauc-qemux86
bitbake-layers add-layer ../meta-rauc
echo 'INHERIT += "rm_work"' >> conf/local.conf
echo 'DISTRO_FEATURES:remove = "alsa bluetooth usbgadget usbhost wifi nfs zeroconf pci 3g nfc x11 opengl ptest wayland vulkan"' >> conf/local.conf
echo 'SSTATE_MIRRORS = "file://.* http://195.201.147.117/sstate-cache/PATH"' >> conf/local.conf
echo 'DISTRO_FEATURES:append = " rauc"' >> conf/local.conf
echo 'IMAGE_INSTALL:append = " rauc"' >> conf/local.conf
echo 'IMAGE_FSTYPES = "tar.bz2 wic"' >> conf/local.conf
echo 'WKS_FILE = "qemux86-grub-efi.wks"' >> conf/local.conf
echo 'EXTRA_IMAGEDEPENDS += "ovmf"' >> conf/local.conf
echo 'PREFERRED_RPROVIDER_virtual-grub-bootconf = "rauc-qemu-grubconf"' >> conf/local.conf
- name: bitbake parsing test
run: |
source poky/oe-init-build-env build
bitbake -p
49 changes: 49 additions & 0 deletions .github/workflows/meta-rauc-raspberrypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: meta-rauc-raspberrypi CI

on:
# Trigger the workflow on push or pull request,
# but only for the kirkstone branch
push:
branches:
- kirkstone
paths:
- 'meta-rauc-raspberrypi/**'
pull_request:
branches:
- kirkstone
paths:
- 'meta-rauc-raspberrypi/**'
jobs:
build:
name: meta-rauc-raspberrypi Build
runs-on: ubuntu-20.04
steps:
- name: Install required packages
run: |
sudo apt-get install diffstat
- name: Checkout
uses: actions/checkout@v3
- name: Clone poky
run: git clone -b kirkstone git://git.yoctoproject.org/poky
- name: Clone meta-rauc
run: git clone -b kirkstone https://github.com/rauc/meta-rauc.git
- name: Clone meta-raspberrypi
run: git clone -b kirkstone git://git.yoctoproject.org/meta-raspberrypi
- name: Initialize build directory
run: |
source poky/oe-init-build-env build
bitbake-layers add-layer ../meta-rauc
bitbake-layers add-layer ../meta-raspberrypi
bitbake-layers add-layer ../meta-rauc-raspberrypi
echo 'INHERIT += "rm_work"' >> conf/local.conf
echo 'DISTRO_FEATURES:remove = "alsa bluetooth usbgadget usbhost wifi nfs zeroconf pci 3g nfc x11 opengl ptest wayland vulkan"' >> conf/local.conf
echo 'SSTATE_MIRRORS = "file://.* http://195.201.147.117/sstate-cache/PATH"' >> conf/local.conf
echo 'MACHINE = "raspberrypi4"' >> conf/local.conf
echo 'DISTRO_FEATURES:append = " rauc"' >> conf/local.conf
echo 'IMAGE_INSTALL:append = " rauc"' >> conf/local.conf
echo 'IMAGE_FSTYPES = "ext4"' >> conf/local.conf
echo 'WKS_FILE = "sdimage-dual-raspberrypi.wks.in"' >> conf/local.conf
- name: bitbake parsing test
run: |
source poky/oe-init-build-env build
bitbake -p

0 comments on commit 0b0d803

Please sign in to comment.