CircleCI work and support Raspbian.
This commit is contained in:
parent
b7a8bfce9f
commit
3e33ad5f9a
|
@ -9,14 +9,14 @@ jobs:
|
|||
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
|
||||
# See: https://circleci.com/docs/configuration-reference/#executor-job
|
||||
docker:
|
||||
- image: kisom/sc-dev:latest
|
||||
- image: kisom/sc-dev:1.0.0
|
||||
# Add steps to the job
|
||||
# See: https://circleci.com/docs/configuration-reference/#steps
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: "Setup cmake build"
|
||||
command: "./scripts/setup-cmake.sh"
|
||||
name: Setup cmake build
|
||||
command: ./scripts/setup-cmake.sh
|
||||
-
|
||||
|
||||
# Orchestrate jobs using workflows
|
||||
|
|
|
@ -55,8 +55,10 @@ install_macos () {
|
|||
|
||||
|
||||
install_linux () {
|
||||
DISTRIB_ID="${DISTRIB_ID:-}"
|
||||
echo "[+] host system is Linux"
|
||||
[[ -f "/etc/lsb-release" ]] && source /etc/lsb-release
|
||||
[[ -f "/etc/rpi-issue" ]] && DISTRIB_ID=apt-based
|
||||
if [ -z "${DISTRIB_ID}" ]
|
||||
then
|
||||
if [ -d /etc/apt ]
|
||||
|
|
Loading…
Reference in New Issue