Skip to content

Commit

Permalink
New AnyODE
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Apr 22, 2020
1 parent 90eeab6 commit 9df310e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ clone:
external/anyode: git://github.com/bjodah/anyode.git

build:
image: bjodah/bjodahimg20dev:v1.0.2
image: bjodah/bjodahimg20dev:v1.1.0
environment:
- ASAN_SYMBOLIZER_PATH=/usr/lib/llvm-10/bin/llvm-symbolizer
- ASAN_OPTIONS=symbolize=1
- CPLUS_INCLUDE_PATH=/opt/boost_1_72_p/include
commands:
- strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 # stackoverflow.com/questions/54582864/
- ./scripts/ci.sh pyodeint
- ./scripts/prepare_deploy.sh
- bash -c '[[ $(python3 setup.py --version) =~ ^[0-9]+.* ]]'
Expand Down
16 changes: 15 additions & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
CXX ?= g++
LIBS ?=-lm
CXXFLAGS ?= -std=c++11 -Wall -Wextra -Werror -pedantic -g -ggdb -O0
WARNINGS ?= \
-Wall \
-Wextra \
-Wredundant-decls \
-Wcast-align \
-Wmissing-include-dirs \
-Wswitch-enum \
-Wswitch-default \
-Winvalid-pch \
-Wredundant-decls \
-Wformat=2 \
-Wmissing-format-attribute \
-Wformat-nonliteral \
-Wodr
CXXFLAGS ?= -std=c++11 $(WARNINGS) -Werror -pedantic -g -ggdb -O0
#-D_GLIBCXX_DEBUG
CXXFLAGS += $(EXTRA_FLAGS)
INCLUDE ?= -I../pyodeint/include -I../external/anyode/include
Expand Down

0 comments on commit 9df310e

Please sign in to comment.