Skip to content

Commit

Permalink
Merge pull request cockroachdb#6782 from cockroachdb/add-trace-to-doc…
Browse files Browse the repository at this point in the history
…-builds

Add --trace flag to docs build commands
  • Loading branch information
jseldess authored Mar 10, 2020
2 parents e7570e2 + 7bc2e42 commit 756f39e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ jekyll-action := build

.PHONY: cockroachdb-build
cockroachdb-build: bootstrap
bundle exec jekyll $(jekyll-action) --incremental --config _config_base.yml,_config_cockroachdb.yml$(extra-config) $(JEKYLLFLAGS)
bundle exec jekyll $(jekyll-action) --incremental --trace --config _config_base.yml,_config_cockroachdb.yml$(extra-config) $(JEKYLLFLAGS)

.PHONY: cockroachdb
cockroachdb: jekyll-action := serve --port 4000
cockroachdb: bootstrap
bundle exec jekyll $(jekyll-action) --incremental --config _config_base.yml,_config_cockroachdb.yml,_config_cockroachdb_local.yml$(extra-config) $(JEKYLLFLAGS)
bundle exec jekyll $(jekyll-action) --incremental --trace --config _config_base.yml,_config_cockroachdb.yml,_config_cockroachdb_local.yml$(extra-config) $(JEKYLLFLAGS)

.PHONY: standard
standard: cockroachdb

.PHONY: cockroachcloud-build
cockroachcloud-build: bootstrap
bundle exec jekyll $(jekyll-action) --incremental --config _config_base.yml,_config_cockroachcloud.yml$(extra-config) $(JEKYLLFLAGS)
bundle exec jekyll $(jekyll-action) --incremental --trace --config _config_base.yml,_config_cockroachcloud.yml$(extra-config) $(JEKYLLFLAGS)

.PHONY: cockroachcloud
cockroachcloud: jekyll-action := serve --port 4001
Expand Down
2 changes: 1 addition & 1 deletion netlify/build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

function build {
bundle exec jekyll build --config _config_base.yml,$1
bundle exec jekyll build --trace --config _config_base.yml,$1
}

gem install bundler
Expand Down

0 comments on commit 756f39e

Please sign in to comment.