From 7a2d6c1165c4a0032c8a4f132f361e6384b02ac5 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 23 Aug 2019 22:10:47 -0700 Subject: Simplify .gitlab-ci.yml by moving DEPS to Makefile --- .gitlab-ci.yml | 6 +++--- GNUmakefile | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8fedf7b..795dffd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/GNUmakefile b/GNUmakefile index 909ce87..7503828 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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) -- cgit v1.2.3-54-g00ecf