Skip to content

Commit

Permalink
Cleanup Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
jkisk committed Feb 10, 2022
1 parent 64631b8 commit d52cbde
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: ensure only_build only_test all
.PHONY: ensure only_test all

all: install ensure only_build lint only_test
all: install ensure lint only_test

install:
yarn global add tslint typescript
Expand All @@ -9,8 +9,6 @@ ensure:
cd misc/test && go mod tidy
cd misc/test && go mod download

only_build:

lint:
tslint -c tslint.json **/*.ts

Expand All @@ -36,9 +34,3 @@ destroy_test_infra:
echo "Tearing down test infra"
./misc/scripts/destroy-ci-cluster.sh $(StackName)

# The travis_* targets are entrypoints for CI.
.PHONY: travis_cron travis_push travis_pull_request travis_api
travis_cron: all
travis_push: all
travis_pull_request: all
travis_api: all

0 comments on commit d52cbde

Please sign in to comment.