Skip to content
Snippets Groups Projects

Version 0.1.0 (setup)

Merged Adrien Crovato requested to merge adri into master
Compare and Show latest version
1 file
+ 5
4
Compare changes
  • Side-by-side
  • Inline
+ 5
4
@@ -19,7 +19,6 @@ waves:
<<: *global_tag_def
stage: .pre
script:
- pwd
- printenv | sort
- cd ..
- rm -rf waves
@@ -38,8 +37,7 @@ format:
stage: build
script:
- clang-format --version # we use clang-format-10 exclusively
- pwd
- ./${CI_PROJECT_DIR}/../waves/scripts/format_code.py
- ${CI_PROJECT_DIR}/../waves/scripts/format_code.py
- mkdir -p patches
- if git diff --patch --exit-code > patches/clang-format.patch; then echo "Clang format changed nothing"; else echo "Clang format found changes to make!"; false; fi
artifacts:
@@ -47,13 +45,14 @@ format:
- patches/
expire_in: 1 day
when: on_failure
dependencies:
- waves
allow_failure: true
build:
<<: *global_tag_def
stage: build
script:
- pwd
- mkdir build
- cd build
- cmake -DCMAKE_PREFIX_PATH=${CI_PROJECT_DIR}/../waves -Wno-dev ..
@@ -62,6 +61,8 @@ build:
paths:
- build/
expire_in: 1 hour
dependencies:
- waves
doxygen:
<<: *global_tag_def
Loading