Skip to content
Snippets Groups Projects
Commit df22bd12 authored by Sebastian Pape's avatar Sebastian Pape
Browse files

Fixing the initialization warning of IE and the error when copying the Logs...

Fixing the initialization warning of IE and the error when copying the Logs folder if it is not there
parent d9970171
No related branches found
No related tags found
2 merge requests!24Bringing Develop back on Par,!23Fixing the initialization warning of IE and the error when copying the Logs...
......@@ -63,7 +63,7 @@ variables:
#
- if($env:EXIT_CODE -eq 0){
- if(Test-Path $env:CI_PROJECT_DIR/launcher.meta){
- $env:SHARED_META=$((Invoke-WebRequest $env:SHARED_META_URL).Content | head -n -1 | tail -n +2 | Out-String)
- $env:SHARED_META=$((Invoke-WebRequest $env:SHARED_META_URL -UseBasicParsing).Content | head -n -1 | tail -n +2 | Out-String)
- $env:CI_DEPLOY_TIME=$(Get-Date -UFormat +%Y_%m_%d_%H_%M)
- $env:CLEANED_COMMIT_MSG=$(echo $env:CI_COMMIT_MESSAGE | python -c "import json,sys; print(json.dumps(sys.stdin.read()).strip('\`"'))")
- cat $env:CI_PROJECT_DIR/launcher.meta | sed '/CI-DATA-ENTRIES/c\${SHARED_META}' | envsubst > $env:CI_PROJECT_DIR/Release/$env:CI_PROJECT_NAME/WindowsNoEditor/launcher.meta.tmp
......@@ -76,7 +76,7 @@ variables:
- echo "*********************************************`nThe build failed. You can find all output logs in the artifacts.`n*********************************************"
}
- mkdir -f "$env:CI_PROJECT_DIR/Release/$env:CI_PROJECT_NAME/WindowsNoEditor/BuildLogs/" | out-null
- cp -R "$env:ADDITIONAL_LOGS/*" "$env:CI_PROJECT_DIR/Release/$env:CI_PROJECT_NAME/WindowsNoEditor/BuildLogs/"
- cp -ErrorAction Ignore -R "$env:ADDITIONAL_LOGS/*" "$env:CI_PROJECT_DIR/Release/$env:CI_PROJECT_NAME/WindowsNoEditor/BuildLogs/" ; $true | out-null
- exit $env:EXIT_CODE
timeout: 3h
artifacts:
......@@ -122,7 +122,7 @@ variables:
- echo -e "*********************************************The build failed. You can find all output logs in the artifacts.*********************************************"
- fi
- mkdir -p "${CI_PROJECT_DIR}/Release/${CI_PROJECT_NAME}/LinuxNoEditor/BuildLogs/"
- cp -R "${ADDITIONAL_LOGS}/"* "${CI_PROJECT_DIR}/Release/${CI_PROJECT_NAME}/LinuxNoEditor/BuildLogs/"
- cp -R "${ADDITIONAL_LOGS}/"* "${CI_PROJECT_DIR}/Release/${CI_PROJECT_NAME}/LinuxNoEditor/BuildLogs/" || true
- exit ${EXIT_CODE}
timeout: 3h
artifacts:
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment