Skip to content
Snippets Groups Projects
Commit c1be6d57 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Peek into system command directories

parent a7934d60
No related branches found
No related tags found
No related merge requests found
...@@ -39,12 +39,18 @@ building_stage: ...@@ -39,12 +39,18 @@ building_stage:
- echo $CI_COMMIT_BRANCH - echo $CI_COMMIT_BRANCH
- echo "Getting system info ..." - echo "Getting system info ..."
- cat /etc/os-release - cat /etc/os-release
- cd src/sphere - echo "/bin/g*"
- echo "Building SPHERE ..." - ls /bin/g*
- gcc -O2 -lstdc++ -lm np_sphere.cpp sphere.cpp ../libnptm/Commons.cpp ../libnptm/Configuration.cpp ../libnptm/Parsers.cpp -o ../../build/sphere/np_sphere - echo "/usr/bin/g*"
- cd ../cluster - ls /usr/bin/g*
- echo "Building CLUSTER ..." - echo "/usr/local/bin/g*"
- gcc -O2 -lstdc++ -lm np_cluster.cpp cluster.cpp ../libnptm/Commons.cpp ../libnptm/Configuration.cpp ../libnptm/Parsers.cpp ../sphere/sphere.cpp -o ../../build/cluster/np_cluster - ls /usr/local/bin/g*
#- cd src/sphere
#- echo "Building SPHERE ..."
#- gcc -O2 -lstdc++ -lm np_sphere.cpp sphere.cpp ../libnptm/Commons.cpp ../libnptm/Configuration.cpp ../libnptm/Parsers.cpp -o ../../build/sphere/np_sphere
#- cd ../cluster
#- echo "Building CLUSTER ..."
#- gcc -O2 -lstdc++ -lm np_cluster.cpp cluster.cpp ../libnptm/Commons.cpp ../libnptm/Configuration.cpp ../libnptm/Parsers.cpp ../sphere/sphere.cpp -o ../../build/cluster/np_cluster
running_stage: running_stage:
stage: run stage: run
...@@ -68,14 +74,14 @@ running_stage: ...@@ -68,14 +74,14 @@ running_stage:
- hostname - hostname
- echo $CI_COMMIT_SHA - echo $CI_COMMIT_SHA
- echo $CI_COMMIT_BRANCH - echo $CI_COMMIT_BRANCH
- cd build/sphere #- cd build/sphere
- echo "Running np_sphere" #- echo "Running np_sphere"
- chmod +x np_sphere #- chmod +x np_sphere
- ./np_sphere #- ./np_sphere
- cd ../cluster #- cd ../cluster
- echo "Running np_cluster" #- echo "Running np_cluster"
- chmod +x np_cluster #- chmod +x np_cluster
- ./np_cluster #- ./np_cluster
testing_stage: testing_stage:
stage: test stage: test
...@@ -100,12 +106,12 @@ testing_stage: ...@@ -100,12 +106,12 @@ testing_stage:
- hostname - hostname
- echo $CI_COMMIT_SHA - echo $CI_COMMIT_SHA
- echo $CI_COMMIT_BRANCH - echo $CI_COMMIT_BRANCH
- cd build/sphere #- cd build/sphere
- export FFILE=../../test_data/sphere/OSPH #- export FFILE=../../test_data/sphere/OSPH
- echo "Comparing output of SPHERE" #- echo "Comparing output of SPHERE"
- python3 ../../src/scripts/pycompare.py --ffile=$FFILE --cfile=c_OSPH --html #- python3 ../../src/scripts/pycompare.py --ffile=$FFILE --cfile=c_OSPH --html
- cd ../cluster #- cd ../cluster
- echo "Comparing output of CLUSTER" #- echo "Comparing output of CLUSTER"
- export FFILE=../../test_data/cluster/OCLU #- export FFILE=../../test_data/cluster/OCLU
- python3 ../../src/scripts/pycompare.py --ffile=$FFILE --cfile=c_OCLU --html #- python3 ../../src/scripts/pycompare.py --ffile=$FFILE --cfile=c_OCLU --html
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment