Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit a0a9f1b

Browse files
committed
delete rebar3 file
1 parent f9dde76 commit a0a9f1b

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.travis.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@ language: erlang
22
otp_release:
33
- 19.3
44
install:
5-
- make
5+
- wget https://s3.amazonaws.com/rebar3/rebar3 && chmod u+x rebar3
6+
- REBAR=./rebar3 make
67
- ./rebar3 update
78
before_script:
89
- epmd -daemon
910
services:
1011
- redis-server
1112
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
1920
notifications:
2021
2122
slack: lasp-lang:hiPRNnbUa3zdGrrXZfGRAF7D

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ PACKAGE ?= lasp
22
VERSION ?= $(shell git describe --tags)
33
BASE_DIR = $(shell pwd)
44
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
88

99
.PHONY: rel deps test plots dcos logs fpm
1010

rebar3

-763 KB
Binary file not shown.

tools.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# wholesale when a new version of tools.mk is released.
2525
# -------------------------------------------------------------------
2626

27-
REBAR = $(shell pwd)/rebar3
28-
REVISION ?= $(shell git rev-parse --short HEAD)
27+
REBAR ?= rebar3
28+
REVISION ?= $(shell git rev-parse --short HEAD)
2929
PROJECT ?= $(shell basename `find src -name "*.app.src"` .app.src)
3030
DEP_DIR ?= "deps"
3131
EBIN_DIR ?= "ebin"

0 commit comments

Comments
 (0)