Simplify .gitlab-ci.yml by moving DEPS to Makefile
This commit is contained in:
parent
942ed97232
commit
7a2d6c1165
2 changed files with 7 additions and 3 deletions
|
@ -12,11 +12,11 @@ test-oni-alert:
|
|||
|
||||
test-oni-bookmark:
|
||||
stage: test
|
||||
script: make test-oni-bookmark DEPS="oni-data-dir"
|
||||
script: make test-oni-bookmark
|
||||
|
||||
test-oni-css:
|
||||
stage: test
|
||||
script: make test-oni-css DEPS="oni-company oni-fci"
|
||||
script: make test-oni-css
|
||||
|
||||
test-oni-grep:
|
||||
stage: test
|
||||
|
@ -28,7 +28,7 @@ test-oni-highlight-indent-guides:
|
|||
|
||||
test-oni-php:
|
||||
stage: test
|
||||
script: make test-oni-php DEPS="oni-flycheck oni-company oni-fci"
|
||||
script: make test-oni-php
|
||||
|
||||
package-oni-conf:
|
||||
stage: pre-package-multifile
|
||||
|
|
|
@ -33,5 +33,9 @@ test-%: install-%
|
|||
--eval "(setq ert-batch-backtrace-right-margin nil)" \
|
||||
--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:
|
||||
rm -fv $(FILES)
|
||||
|
|
Loading…
Reference in a new issue