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

View File

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