Commit 730d0816 authored by Antoine Regimbeau's avatar Antoine Regimbeau
Browse files

Remove fast build and remove -F in ssh command

No related merge requests found
Showing with 13 additions and 13 deletions
+13 -13
...@@ -41,18 +41,18 @@ stages: ...@@ -41,18 +41,18 @@ stages:
- runner_system_failure - runner_system_failure
- stuck_or_timeout_failure - stuck_or_timeout_failure
fast-build: # fast-build:
extends: .general # extends: .general
only: [merge_requests, branches] # only: [merge_requests, branches]
stage: precheck # stage: precheck
image: $BUILD_IMAGE_REGISTRY/otb-ubuntu-native-develop:latest # image: $BUILD_IMAGE_REGISTRY/otb-ubuntu-native-develop:latest
before_script: # before_script:
- export GIT_LFS_SKIP_SMUDGE=1 # - export GIT_LFS_SKIP_SMUDGE=1
- git checkout $CI_COMMIT_REF_NAME # - git checkout $CI_COMMIT_REF_NAME
- python3 CI/check_twin_pipelines.py # - python3 CI/check_twin_pipelines.py
script: # script:
- ctest -V -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-18.04-fast # - ctest -V -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-18.04-fast
- ccache -s # - ccache -s
.common-build: .common-build:
extends: .general extends: .general
......
...@@ -190,7 +190,7 @@ set ( SB_ARTIFACT_GIT "${OTB_SOURCE_DIR}/superbuild-artifact" ) ...@@ -190,7 +190,7 @@ set ( SB_ARTIFACT_GIT "${OTB_SOURCE_DIR}/superbuild-artifact" )
# -F /dev/null so the agent is not taking a default file ~/.ssh/.. # -F /dev/null so the agent is not taking a default file ~/.ssh/..
execute_process( execute_process(
COMMAND ${GIT} "config" "core.sshCommand" COMMAND ${GIT} "config" "core.sshCommand"
"ssh -o StrictHostKeyChecking=no -F /dev/null" "ssh -o StrictHostKeyChecking=no"
WORKING_DIRECTORY ${SB_ARTIFACT_GIT} WORKING_DIRECTORY ${SB_ARTIFACT_GIT}
RESULT_VARIABLE ssh_res RESULT_VARIABLE ssh_res
OUTPUT_VARIABLE ssh_out OUTPUT_VARIABLE ssh_out
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment