forked from raphaelscholle/libcamera-opensource
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 - add openhd workflow for building
- Loading branch information
1 parent
091d25d
commit 417c9f4
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Build RPI | ||
|
||
on: [push] | ||
|
||
env: | ||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | ||
BUILD_TYPE: Release | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }} | ||
steps: | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- uses: pguyot/arm-runner-action@98b8d5a3228f504a8bd54913ab1e23d70f369c6e | ||
id: build_image | ||
with: | ||
base_image: raspios_lite:2023-05-03 | ||
image_additional_mb: 4000 | ||
bind_mount_repository: true | ||
import_github_env: true | ||
commands: | | ||
ls -a | ||
sudo apt update | ||
sudo apt install -y libboost-dev git python3-pip ruby-dev libgnutls28-dev openssl libtiff5-dev qtbase5-dev libqt5core5a libqt5gui5 libqt5widgets5 meson libegl1-mesa-dev cmake libboost-program-options-dev libdrm-dev libexif-dev libegl1-mesa-dev | ||
sudo pip3 install pyyaml ply jinja2 | ||
sudo pip3 install --upgrade meson | ||
gem install fpm | ||
sudo apt install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev python3-pybind11 | ||
curl -s --compressed "https://arducam.github.io/arducam_ppa/KEY.gpg" | sudo apt-key add - | ||
sudo curl -s --compressed -o /etc/apt/sources.list.d/arducam_list_files.list "https://arducam.github.io/arducam_ppa/arducam_list_files.list" | ||
sudo apt update | ||
sudo apt install -y arducam-pivariety-sdk-dev | ||
mkdir -p /opt/libcamera-openhd | ||
meson build --buildtype=release -Dpipelines=rpi/vc4 -Dipas=rpi/vc4 -Dv4l2=true -Dgstreamer=enabled -Dtest=false -Dlc-compliance=disabled -Dcam=disabled -Dqcam=enabled -Ddocumentation=disabled -Dpycamera=enabled -Dlibexecdir=/usr/lib/arm-linux-gnueabihf --prefix=/usr | ||
DESTDIR=/opt/libcamera-openhd/ ninja -C build install | ||
cp -r tuning/* /opt/libcamera-openhd/usr/share/libcamera/ipa/rpi/vc4/ | ||
sudo apt download arducam-pivariety-sdk-dev | ||
dpkg -x arducam-pivariety-sdk-dev*.deb /opt/libcamera-openhd | ||
rm arducam-pivariety-sdk-dev*.deb | ||
fpm -a armhf -s dir -t deb -n libcamera-openhd -v 1.2.7 -C /opt/libcamera-openhd -p libcamera-openhd_VERSION_ARCH.deb --conflicts "libcamera-dev" --conflicts "libcamera0" | ||
- name: Upload to Github | ||
uses: 'actions/upload-artifact@v2' | ||
with: | ||
name: "libcamera" | ||
path: | | ||
/*.deb | ||
*deb | ||
*.log | ||
- name: Push | ||
id: push | ||
uses: cloudsmith-io/action@master | ||
with: | ||
api-key: ${{ secrets.CLOUDSMITH_API_KEY }} | ||
command: "push" | ||
format: "deb" | ||
owner: "openhd" | ||
repo: "openhd-2-3-evo" | ||
distro: "raspbian" | ||
release: "bullseye" | ||
republish: "true" # needed ONLY if version is not changing | ||
file: "*deb" | ||
|
||
|
||
#- name: Install | ||
# run: | | ||
# cd OpenHD/build | ||
# sudo cmake --install . | ||
#- name: Build ninja | ||
# run: | | ||
# sudo apt -y install ninja-build | ||
# cd OpenHD | ||
# ./build_cmake.sh |