This file contains hidden or 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
FROM ubuntu:xenial | |
ENV DEBIAN_FRONTEND noninteractive | |
ENV DEPS="\ | |
build-essential \ | |
curl \ | |
python-catkin-pkg \ | |
python-rosdep \ | |
python-wstool \ | |
python3-colcon-common-extensions \ |
This file contains hidden or 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
sudo apt-get update | |
sudo apt-get install chrpath cpio diffstat gawk libmagickwand-dev libmath-prime-util-perl libsdl1.2-dev libssl-dev texinfo vim-tiny whiptail | |
mkdir -p ${HOME}/oe ${HOME}/bin | |
curl https://storage.googleapis.com/git-repo-downloads/repo > ${HOME}/bin/repo | |
chmod a+x ${HOME}/bin/repo | |
export PATH=${HOME}/bin:${PATH} | |
cd oe | |
repo init -u https://github.com/96boards/oe-rpb-manifest.git -b morty | |
export MACHINE=hikey | |
export DISTRO=rpb |
This file contains hidden or 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
#!/usr/bin/python | |
import collections | |
import json | |
import os | |
import signal | |
import sys | |
import subprocess | |
# require pygithub installed | |
from github import Github |