diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5e1b0836332c8cccc7602c09ff23b5d85bffa9a5..f755d494861a7ad799584acc170daa9a5156c8ac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -39,12 +39,18 @@ building_stage: - echo $CI_COMMIT_BRANCH - echo "Getting system info ..." - cat /etc/os-release - - 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 + - echo "/bin/g*" + - ls /bin/g* + - echo "/usr/bin/g*" + - ls /usr/bin/g* + - echo "/usr/local/bin/g*" + - 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: stage: run @@ -68,14 +74,14 @@ running_stage: - hostname - echo $CI_COMMIT_SHA - echo $CI_COMMIT_BRANCH - - cd build/sphere - - echo "Running np_sphere" - - chmod +x np_sphere - - ./np_sphere - - cd ../cluster - - echo "Running np_cluster" - - chmod +x np_cluster - - ./np_cluster + #- cd build/sphere + #- echo "Running np_sphere" + #- chmod +x np_sphere + #- ./np_sphere + #- cd ../cluster + #- echo "Running np_cluster" + #- chmod +x np_cluster + #- ./np_cluster testing_stage: stage: test @@ -100,12 +106,12 @@ testing_stage: - hostname - echo $CI_COMMIT_SHA - echo $CI_COMMIT_BRANCH - - cd build/sphere - - export FFILE=../../test_data/sphere/OSPH - - echo "Comparing output of SPHERE" - - python3 ../../src/scripts/pycompare.py --ffile=$FFILE --cfile=c_OSPH --html - - cd ../cluster - - echo "Comparing output of CLUSTER" - - export FFILE=../../test_data/cluster/OCLU - - python3 ../../src/scripts/pycompare.py --ffile=$FFILE --cfile=c_OCLU --html + #- cd build/sphere + #- export FFILE=../../test_data/sphere/OSPH + #- echo "Comparing output of SPHERE" + #- python3 ../../src/scripts/pycompare.py --ffile=$FFILE --cfile=c_OSPH --html + #- cd ../cluster + #- echo "Comparing output of CLUSTER" + #- export FFILE=../../test_data/cluster/OCLU + #- python3 ../../src/scripts/pycompare.py --ffile=$FFILE --cfile=c_OCLU --html