This repository was archived by the owner on Sep 28, 2021. It is now read-only.
File tree 4 files changed +14
-13
lines changed
4 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,21 @@ language: erlang
2
2
otp_release :
3
3
- 19.3
4
4
install :
5
- - make
5
+ - wget https://s3.amazonaws.com/rebar3/rebar3 && chmod u+x rebar3
6
+ - REBAR=./rebar3 make
6
7
- ./rebar3 update
7
8
before_script :
8
9
- epmd -daemon
9
10
services :
10
11
- redis-server
11
12
script :
12
- - make eunit
13
- - make xref
14
- - make ct
15
- - make peer-to-peer-ad-counter-simulation
16
- - make client-server-ad-counter-simulation
17
- - make peer-to-peer-game-tournament-simulation
18
- - make client-server-game-tournament-simulation
13
+ - REBAR=./rebar3 make eunit
14
+ - REBAR=./rebar3 make xref
15
+ - REBAR=./rebar3 make ct
16
+ - REBAR=./rebar3 make peer-to-peer-ad-counter-simulation
17
+ - REBAR=./rebar3 make client-server-ad-counter-simulation
18
+ - REBAR=./rebar3 make peer-to-peer-game-tournament-simulation
19
+ - REBAR=./rebar3 make client-server-game-tournament-simulation
19
20
notifications :
20
21
21
22
slack : lasp-lang:hiPRNnbUa3zdGrrXZfGRAF7D
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ PACKAGE ?= lasp
2
2
VERSION ?= $(shell git describe --tags)
3
3
BASE_DIR = $(shell pwd)
4
4
ERLANG_BIN = $(shell dirname $(shell which erl) )
5
- REBAR = $( shell pwd) / rebar3
6
- VERSION = "0.8.2"
7
- MAKE = make
5
+ REBAR ?= rebar3
6
+ VERSION = "0.8.2"
7
+ MAKE = make
8
8
9
9
.PHONY : rel deps test plots dcos logs fpm
10
10
Original file line number Diff line number Diff line change 24
24
# wholesale when a new version of tools.mk is released.
25
25
# -------------------------------------------------------------------
26
26
27
- REBAR = $( shell pwd) / rebar3
28
- REVISION ?= $(shell git rev-parse --short HEAD)
27
+ REBAR ?= rebar3
28
+ REVISION ?= $(shell git rev-parse --short HEAD)
29
29
PROJECT ?= $(shell basename `find src -name "* .app.src"` .app.src)
30
30
DEP_DIR ?= "deps"
31
31
EBIN_DIR ?= "ebin"
You can’t perform that action at this time.
0 commit comments