Skip to content
Snippets Groups Projects
Commit 94b11aa4 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'smoke-test-suite' into 'master'

[Makefile] fix smoke-test/static-analysis target

See merge request !104
parents 0d91eae7 1b39754b
No related branches found
No related tags found
1 merge request!104[Makefile] fix smoke-test/static-analysis target
Pipeline #58436 passed
......@@ -32,9 +32,9 @@ stages:
- smoke-test
- test
smoke-test:
smoke-test-suite:
stage: smoke-test
script: make smoke-test
script: make smoke-test-suite
static-analysis-with-emper-io:
stage: smoke-test
......
......@@ -41,12 +41,17 @@ else
$(warning old mesion version $(MESON_VERSION) detected, meson >= 0.52 required for clang-tidy)
endif
static-analysis: all
.PHONY: static-analysis
static-analysis: all check-format check-license doc
$(NINJA) -C build $(STATIC_ANALYSIS_NINJA_TARGETS)
smoke-test: all check-format check-license doc static-analysis
.PHONY: smoke-test-suite
smoke-test-suite: all
cd build && meson test --suite smoke
.PHONY: smoke-test
smoke-test: smoke-test-suite static-analysis
TEST_NINJA_TARGETS += test
doc: all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment