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

Add confirm option to package installation commands

parent bc147cbf
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ building_stage: ...@@ -44,7 +44,7 @@ building_stage:
- cat /etc/os-release - cat /etc/os-release
- echo "Updating system" - echo "Updating system"
- yum check-update - yum check-update
- yum update - yum update -y
- echo "Installing dependencies" - echo "Installing dependencies"
- yum install -y g++ gfortran make - yum install -y g++ gfortran make
- cd src - cd src
...@@ -73,7 +73,7 @@ running_stage: ...@@ -73,7 +73,7 @@ running_stage:
- echo $CI_COMMIT_BRANCH - echo $CI_COMMIT_BRANCH
- echo "Updating system" - echo "Updating system"
- yum check-update - yum check-update
- yum update - yum update -y
- echo "Installing dependencies" - echo "Installing dependencies"
- yum install -y g++ gfortran gdb - yum install -y g++ gfortran gdb
- cd build/sphere - cd build/sphere
...@@ -106,9 +106,9 @@ testing_stage: ...@@ -106,9 +106,9 @@ testing_stage:
- echo $CI_COMMIT_BRANCH - echo $CI_COMMIT_BRANCH
- echo "Updating system" - echo "Updating system"
- yum check-update - yum check-update
- yum update - yum update -y
- echo "Installing dependencies ..." - echo "Installing dependencies ..."
- apt install -y python3 - yum install -y python3
- 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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment