1
0
Fork 0

Simplify .gitlab-ci.yml by moving DEPS to Makefile

This commit is contained in:
Tom Willemse 2019-08-23 22:10:47 -07:00
parent 942ed97232
commit 7a2d6c1165
2 changed files with 7 additions and 3 deletions

View file

@ -12,11 +12,11 @@ test-oni-alert:
test-oni-bookmark: test-oni-bookmark:
stage: test stage: test
script: make test-oni-bookmark DEPS="oni-data-dir" script: make test-oni-bookmark
test-oni-css: test-oni-css:
stage: test stage: test
script: make test-oni-css DEPS="oni-company oni-fci" script: make test-oni-css
test-oni-grep: test-oni-grep:
stage: test stage: test
@ -28,7 +28,7 @@ test-oni-highlight-indent-guides:
test-oni-php: test-oni-php:
stage: test stage: test
script: make test-oni-php DEPS="oni-flycheck oni-company oni-fci" script: make test-oni-php
package-oni-conf: package-oni-conf:
stage: pre-package-multifile stage: pre-package-multifile

View file

@ -33,5 +33,9 @@ test-%: install-%
--eval "(setq ert-batch-backtrace-right-margin nil)" \ --eval "(setq ert-batch-backtrace-right-margin nil)" \
--funcall ert-run-tests-batch-and-exit --funcall ert-run-tests-batch-and-exit
test-oni-css: DEPS := oni-company oni-fci
test-oni-bookmark: DEPS := oni-data-dir
test-oni-php: DEPS := oni-flycheck oni-company oni-fci
clean: clean:
rm -fv $(FILES) rm -fv $(FILES)