Skip to content
Snippets Groups Projects
Commit 3c5ce6e4 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

WIP: More permissive pipeline.

parent 25d419ce
No related branches found
No related tags found
1 merge request!1Initial functionality
Pipeline #10899 failed
...@@ -92,6 +92,7 @@ linting_octave: ...@@ -92,6 +92,7 @@ linting_octave:
stage: test stage: test
script: script:
- mh_lint --octave ./ - mh_lint --octave ./
allow_failure: true
# linting with clang-tidy and include-what-you-use # linting with clang-tidy and include-what-you-use
linting_cpp: linting_cpp:
...@@ -103,6 +104,7 @@ linting_cpp: ...@@ -103,6 +104,7 @@ linting_cpp:
- cd ../build - cd ../build
- cmake -D LINTING=On .. - cmake -D LINTING=On ..
- cmake --build . - cmake --build .
allow_failure: true
# trigger the integration tests # trigger the integration tests
trigger_inttest: trigger_inttest:
......
...@@ -34,7 +34,7 @@ doc: ...@@ -34,7 +34,7 @@ doc:
cd doc && $(MAKE) html cd doc && $(MAKE) html
style: style:
# Wait for https://github.com/florianschanda/miss_hit/issues/224 # Disabled until https://github.com/florianschanda/miss_hit/issues/224 is resolved.
# mh_style --fix --octave src doc # mh_style --fix --octave src doc
clang-format-11 --dry-run --verbose --Werror $(shell find test/ src/ -type f -iname "*.cpp" -o -iname "*.hpp" -o -iname "*.h" -o -iname "*.h.in") clang-format-11 --dry-run --verbose --Werror $(shell find test/ src/ -type f -iname "*.cpp" -o -iname "*.hpp" -o -iname "*.h" -o -iname "*.h.in")
.PHONY: style .PHONY: style
...@@ -49,7 +49,7 @@ test: ...@@ -49,7 +49,7 @@ test:
.PHONY: pkg-test .PHONY: pkg-test
pkg-test: install pkg-test: install
octave --eval "pkg load caosdb; caosdb --version" octave --eval "pkg load caosdb; cc = caosdbClass()"
.PHONY: pkg .PHONY: pkg
pkg: dist/caosdb.tar.gz pkg: dist/caosdb.tar.gz
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment