Commit a447ed8a authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Invoke yum as SU in pipeline

parent 1c58d1c8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ building_stage:
      - echo "Getting system info ..."
      - cat /etc/os-release
      - echo "Installing dependencies"
      - yum install -y g++ gfortran make
      - sudo yum install -y g++ gfortran make
      - cd src
      - echo "Running make"
      - make
@@ -69,7 +69,7 @@ running_stage:
      - echo $CI_COMMIT_SHA
      - echo $CI_COMMIT_BRANCH
      - echo "Updating system"
      - yum install -y g++ gfortran gdb
      - sudo yum install -y g++ gfortran gdb
      - cd build/sphere
      - echo "Running np_sphere"
      - chmod +x np_sphere
@@ -99,7 +99,7 @@ testing_stage:
      - echo $CI_COMMIT_SHA
      - echo $CI_COMMIT_BRANCH
      - echo "Updating system"
      - yum install -y python3
      - sudo yum install -y python3
      - cd build/sphere
      - export FFILE=../../test_data/sphere/OSPH
      - echo "Comparing output of SPHERE"