90 lines
3.0 KiB
YAML
90 lines
3.0 KiB
YAML
variables:
|
||
NUGET_PATH: 'C:\Tools\nuget.exe'
|
||
MSBUILD_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\MSBuild.exe'
|
||
ASPNET_MERGE_PATH: 'C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools'
|
||
EXE_RELEASE_FOLDER: 'c:\Projetcs\Compiled\GPW\Release'
|
||
DEPLOY_FOLDER: 'c:\Projects\Deploy\GPW\Builds'
|
||
# NEXUS_PATH: 'MAPO/IOB-WIN-NEXT'
|
||
APP_NAME: 'IOB-WIN-NEXT'
|
||
VERS_MAIN: '3.6'
|
||
NEW_REL: ''
|
||
OUTPUT_DIR: ''
|
||
|
||
# helper x fix pacchetti nuget da repo locale nexus.steamware.net
|
||
.nuget-fix: &nuget-fix
|
||
- |
|
||
$hasSource = C:\Tools\nuget.exe sources list | find "`"Steamware Nexus`"" /C
|
||
if ($hasSource -eq 0) {
|
||
C:\Tools\nuget.exe sources Add -Name "`"Steamware Nexus`"" -Source https://nexus.steamware.net/repository/nuget-group -username "`"nugetUser`"" -password "`"$NEXUS_PASSWD`""
|
||
} else {
|
||
C:\Tools\nuget.exe sources Update -Name "`"Steamware Nexus`"" -Source https://nexus.steamware.net/repository/nuget-group -username "`"nugetUser`"" -password "`"$NEXUS_PASSWD`""
|
||
}
|
||
echo $hasSource
|
||
|
||
# helper x fix version number
|
||
.version-fix: &version-fix
|
||
- |
|
||
$env:NEW_REL = $env:VERS_MAIN+"."+(get-date –format yyMM)+"."+(get-date –format ddHH)
|
||
$contenuto = Get-Content -path 'VersGen\VersGen.cs' -Raw
|
||
$newContenuto = $contenuto -replace '0.0.0.0', $env:NEW_REL
|
||
$newContenuto | Set-Content -Path 'VersGen\VersGen.cs'
|
||
echo "Set vers: $env:NEW_REL"
|
||
|
||
stages:
|
||
- build
|
||
|
||
Test-S7:build:
|
||
stage: build
|
||
tags:
|
||
- win
|
||
variables:
|
||
APP_NAME: Test-S7
|
||
before_script:
|
||
- *nuget-fix
|
||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln"-verbosity quiet'
|
||
- *version-fix
|
||
script:
|
||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /verbosity:minimal /m'
|
||
|
||
|
||
Test-Beckhoff:build:
|
||
stage: build
|
||
tags:
|
||
- win
|
||
variables:
|
||
APP_NAME: Test-Beckhoff
|
||
before_script:
|
||
- *nuget-fix
|
||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln"-verbosity quiet'
|
||
- *version-fix
|
||
script:
|
||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /verbosity:minimal /m'
|
||
|
||
Test-FileWatcher:build:
|
||
stage: build
|
||
tags:
|
||
- win
|
||
variables:
|
||
APP_NAME: Test-FileWatcher
|
||
before_script:
|
||
- *nuget-fix
|
||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln"-verbosity quiet'
|
||
- *version-fix
|
||
script:
|
||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /verbosity:minimal /m'
|
||
|
||
|
||
# Test-OSAI:build:
|
||
# stage: build
|
||
# tags:
|
||
# - win
|
||
# variables:
|
||
# APP_NAME: Test-OSAI
|
||
# before_script:
|
||
# - *nuget-fix
|
||
# - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln"-verbosity quiet'
|
||
# - *version-fix
|
||
# script:
|
||
# - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /verbosity:minimal /m'
|
||
|