Merge pull request #141 from talentdeficit/rm-makefile

expand OTPs under test by CI
This commit is contained in:
Tristan Sloughter 2020-07-03 10:33:02 -06:00 committed by GitHub
commit 894ec1e6cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 22 deletions

View file

@ -15,9 +15,7 @@ jobs:
strategy: strategy:
matrix: matrix:
# important to check a pre-23 version that still uses nodetool otp_version: [19.3.6, 20.3.8.26, 21.3.8.16, 22.3.4.2, 23.0.2]
# plus 23 once it is released
otp_version: [22.3.2]
os: [ubuntu-latest] os: [ubuntu-latest]
steps: steps:

View file

@ -1,19 +0,0 @@
all: deps
deps:
rebar get-deps
rebar compile
app:
rebar compile
tests:
rebar eunit
clean:
rebar clean
distclean: clean
rebar delete-deps
.PHONY: all deps app tests clean distclean