prova modifica step copia

This commit is contained in:
marco.salvi
2022-03-31 14:50:24 +02:00
parent 9434211413
commit affd519bc8
+23 -4
View File
@@ -7,6 +7,8 @@ variables:
APP_NAME: 'EgtBEAMWALL'
APP_NAMEG: 'EgtBEAMWALL'
NEW_REL: ''
VERS_RD: 'Release'
ARCH: 'x86'
OUTPUT_DIR: ''
NET_SHARE: '\\10.74.82.201\Artifacts'
NET_USER: 'steamw\steamware'
@@ -14,7 +16,7 @@ variables:
# helper x mount cartella Artifacts su truenas
.ReplicaCompiled: &ReplicaCompiled
- |
ROBOCOPY /MIR $env:APP_NAME\bin\x64\Debug Z:\
ROBOCOPY /MIR $env:APP_NAME\bin\$env:ARCH\$env:VERS_RD Z:\$CI_COMMIT_BRANCH\$env:ARCH
SLEEP 2
net use Z: /delete
@@ -62,17 +64,34 @@ stages:
- build
- deploy
SupervisorR:build:
Supervisor_x86R:build:
stage: build
tags:
- win
variables:
APP_NAME: EgtBEAMWALL.Supervisor
APP_NAME: EgtBEAMWALL.Supervisor
VERS_RD: 'Release'
ARCH: 'x86'
before_script:
- *nuget-fix
- '& "$env:NUGET_PATH" restore EgtBEAMWALL.sln -verbosity quiet'
- *MakeFolderM
script:
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /verbosity:minimal /m'
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=$env:VERS_RD /p:Platform="$env:ARCH" /p:OutputPath=bin/$env:ARCH/$env:VERS_RD/ /verbosity:minimal /m'
- *ReplicaCompiled
Supervisor_x64R:build:
stage: build
tags:
- win
variables:
APP_NAME: EgtBEAMWALL.Supervisor
VERS_RD: 'Release'
ARCH: 'x64'
before_script:
- *nuget-fix
- '& "$env:NUGET_PATH" restore EgtBEAMWALL.sln -verbosity quiet'
- *MakeFolderM
script:
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=$env:VERS_RD /p:Platform="$env:ARCH" /p:OutputPath=bin/$env:ARCH/$env:VERS_RD/ /verbosity:minimal /m'
- *ReplicaCompiled