Skip to content

Commit

Permalink
make build should just build
Browse files Browse the repository at this point in the history
  • Loading branch information
silvestre committed Apr 25, 2022
1 parent 7b4a638 commit b691b41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- name: Build
run: |
make just-build
make build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,10 @@ stop-db: check-db_type
@docker rm -f ${db_type} &> /dev/null || echo " - we could not stop and remove docker named '${db_type}'"

.PHONY: build
build: init init-db test-certs scheduler autoscaler

.PHONY: just-build
just-build: init scheduler autoscaler
build: init scheduler autoscaler

.PHONY: integration
integration: build
integration: build init-db test-certs
make -C src/autoscaler integration DBURL="${DBURL}"

.PHONY: golangci-lint lint $(addprefix lint_,$(modules))
Expand Down

0 comments on commit b691b41

Please sign in to comment.