Skip to content

Commit 74a50eb

Browse files
committed
Adding debug images as well
1 parent b903e17 commit 74a50eb

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

Makefile

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,20 +228,40 @@ release: tag_major_minor
228228
docker push $(NAME)/standalone-chrome-debug:$(MAJOR_MINOR_PATCH)
229229
docker push $(NAME)/standalone-firefox-debug:$(MAJOR_MINOR_PATCH)
230230

231-
test: test_chrome test_firefox test_phantomjs
231+
test: test_chrome \
232+
test_firefox \
233+
test_chrome_debug \
234+
test_firefox_debug \
235+
test_chrome_standalone \
236+
test_firefox_standalone \
237+
test_chrome_standalone_debug \
238+
test_firefox_standalone_debug
239+
232240

233241
test_chrome:
234242
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh NodeChrome
235243

244+
test_chrome_debug:
245+
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh NodeChromeDebug
246+
236247
test_chrome_standalone:
237248
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh StandaloneChrome
238249

250+
test_chrome_standalone_debug:
251+
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh StandaloneChromeDebug
252+
239253
test_firefox:
240254
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh NodeFirefox
241255

256+
test_firefox_debug:
257+
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh NodeFirefoxDebug
258+
242259
test_firefox_standalone:
243260
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh StandaloneFirefox
244261

262+
test_firefox_standalone_debug:
263+
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh StandaloneFirefoxDebug
264+
245265
test_phantomjs:
246266
VERSION=$(MAJOR_MINOR_PATCH) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh NodePhantomJS
247267

0 commit comments

Comments
 (0)