Skip to content
This repository has been archived by the owner on Sep 2, 2019. It is now read-only.

Δ:.deosrc

Andrew T. DeSantis edited this page Dec 24, 2016 · 18 revisions

.deosrc

Schema

type: object
required: [a, b, c]
properties:
  a: {type: number}
  b: {type: number}
  c: {type: number}

Environment

a: 1
b: 2
c: 3

Template

Δ with (data=None)

FALSE:=0
TRUE:=1

IS_FALSE:=$(FALSE)
IS_TRUE:=$(TRUE)

IS_MAC:=Darwin
IS_LINUX:=Linux

BASEDIR:=$(CURDIR)
HOSTOS:=$(shell uname -s)
SETCACHE:=$(TRUE)
USECACHE:=$(FALSE)

ifeq ($(HOSTOS),$(IS_MAC))
PRINTM:=$(BASEDIR)/.deos/bin/darwin/print
else
PRINTM:=$(BASEDIR)/.deos/bin/travis/print
endif

export DeOS_VM_BOX:=bento/ubuntu-16.04

Test

a: 1
b: 2
c: 3
Clone this wiki locally