phase out shell scripts

This commit is contained in:
Martin Diehl 2021-03-26 13:07:05 +01:00
parent 078baa14c7
commit 4614de4cb5
2 changed files with 3 additions and 7 deletions

View File

@ -89,7 +89,7 @@ checkout:
- git checkout $CI_COMMIT_SHA - git checkout $CI_COMMIT_SHA
- git submodule update --init - git submodule update --init
- source env/DAMASK.sh - source env/DAMASK.sh
- make processing - ./installation/symlink_Processing.py
except: except:
- master - master
- release - release
@ -224,7 +224,7 @@ SpectralRuntime:
script: script:
- module load $IntelCompiler $MPI_Intel $PETSc_Intel - module load $IntelCompiler $MPI_Intel $PETSc_Intel
- cd $DAMASKROOT - cd $DAMASKROOT
- make clean grid processing OPTIMIZATION=AGGRESSIVE - make clean grid OPTIMIZATION=AGGRESSIVE
- cd $LOCAL_HOME/performance # location of old results - cd $LOCAL_HOME/performance # location of old results
- git checkout . # undo any changes (i.e. run time data from non-development branch) - git checkout . # undo any changes (i.e. run time data from non-development branch)
- cd $DAMASKROOT/PRIVATE/testing - cd $DAMASKROOT/PRIVATE/testing

View File

@ -3,7 +3,7 @@ SHELL = /bin/sh
# Makefile for the installation of DAMASK # Makefile for the installation of DAMASK
######################################################################################## ########################################################################################
.PHONY: all .PHONY: all
all: grid mesh processing all: grid mesh
.PHONY: grid .PHONY: grid
grid: grid:
@ -20,7 +20,3 @@ mesh:
.PHONY: clean .PHONY: clean
clean: clean:
@rm -rf build @rm -rf build
.PHONY: processing
processing:
@./installation/symlink_Processing.py ${MAKEFLAGS}