Skip to content
Snippets Groups Projects
Commit a1beb3a2 authored by Florian Hindenlang's avatar Florian Hindenlang
Browse files

gitlab-ci modification.

parent 6f1b93ea
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -11,12 +11,10 @@ stages: ...@@ -11,12 +11,10 @@ stages:
build_debug: build_debug:
stage: build stage: build
script: script:
- cd ode-1 ; make clean ; make DEBUG=yes 2>stderr 1>stdout - rm -rf build_debug || true
- cat stdout; cat stderr
- cd .. ; rm -rf build_debug || true
- mkdir -p build_debug - mkdir -p build_debug
- cp ode-1/rk_solve build_debug/. - cd ode-1 ; make clean ; make DEBUG=yes 2>../build_debug/stderr 1>../build_debug/stdout
- cp ode-1/std* build_debug/. - cp rk_solve ../build_debug/.
artifacts: artifacts:
untracked: true untracked: true
when: always when: always
...@@ -26,12 +24,10 @@ build_debug: ...@@ -26,12 +24,10 @@ build_debug:
build_release: build_release:
stage: build stage: build
script: script:
- cd ode-1 ; make clean ; make DEBUG=no 2>stderr 1>stdout - rm -rf build_release || true
- cat stdout; cat stderr
- cd .. ; rm -rf build_release || true
- mkdir -p build_release - mkdir -p build_release
- cp ode-1/rk_solve build_release/. - cd ode-1 ; make clean ; make DEBUG=no 2>../build_release/stderr 1>../build_release/stdout
- cp ode-1/std* build_release/. - cp rk_solve ../build_release/.
artifacts: artifacts:
untracked: true untracked: true
when: always when: always
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment