379 lines
12 KiB
YAML
379 lines
12 KiB
YAML
variables:
|
|
VERS_MAIN: '3.0'
|
|
NEW_REL: ''
|
|
APP_NAME: 'GPW.App'
|
|
SOL_NAME: 'GPW.APP'
|
|
|
|
# helper x fix pacchetti nuget da repo locale nexus.steamware.net
|
|
.nuget-fix: &nuget-fix
|
|
- |
|
|
echo "esecuzione Nuget FIX steps"
|
|
dotnet nuget list source
|
|
$hasSource = dotnet nuget list source | Select-String -Pattern "Steamware Nexus Proxy"
|
|
if (! [String]::IsNullOrWhiteSpace($hasSource)) {
|
|
dotnet nuget remove source "Steamware Nexus Proxy"
|
|
}
|
|
$hasSource = dotnet nuget list source | Select-String -Pattern "Steamware Nexus"
|
|
if (! [String]::IsNullOrWhiteSpace($hasSource)) {
|
|
dotnet nuget remove source "Steamware Nexus"
|
|
}
|
|
$hasSource = dotnet nuget list source | Select-String -Pattern "nexus-proxy-v3"
|
|
if (! [String]::IsNullOrWhiteSpace($hasSource)) {
|
|
dotnet nuget remove source nexus-proxy-v3
|
|
}
|
|
dotnet nuget add source https://nexus.steamware.net/repository/nuget-group-3/index.json -n "Steamware Nexus" -u nugetUser -p $NEXUS_PASSWD --store-password-in-clear-text
|
|
echo "Steamware Nexus Source added, final state:"
|
|
dotnet nuget list source
|
|
|
|
# helper creazione hash files x IIS
|
|
.hashBuild: &hashBuild
|
|
- |
|
|
$Target = $env:APP_NAME + "\bin\publish\" + $env:APP_NAME + ".zip"
|
|
$MD5 = Get-FileHash $Target -Algorithm MD5
|
|
$SHA1 = Get-FileHash $Target -Algorithm SHA1
|
|
New-Item $Target".md5"
|
|
New-Item $Target".sha1"
|
|
$MD5.Hash | Set-Content -Path $Target".md5"
|
|
$SHA1.Hash | Set-Content -Path $Target".sha1"
|
|
|
|
echo "Created HASH files for $Target"
|
|
|
|
# helper x send su NEXUS x pack
|
|
.nexusUpload: &nexusUpload
|
|
- |
|
|
Set-Alias mCurl C:\Windows\system32\curl.exe
|
|
$fileVers = $env:APP_NAME + "\Resources\VersNum.txt"
|
|
$VersNumb = Get-Content $fileVers
|
|
echo "Curr Version: $VersNumb"
|
|
if($CI_COMMIT_BRANCH -eq "master")
|
|
{
|
|
$version = "stable"
|
|
}
|
|
else
|
|
{
|
|
$version = "unstable"
|
|
}
|
|
$File2Send = Get-ChildItem($env:APP_NAME + "\bin\publish\*")
|
|
ForEach ($File in $File2Send) {
|
|
$FileName = Split-Path $File -leaf
|
|
mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$version/LAST/$FileName
|
|
mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$version/ARCHIVE/$VersNumb/$FileName
|
|
}
|
|
mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file "$env:APP_NAME\Resources\manifest.xml" https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$version/LAST/manifest.xml
|
|
mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file "$env:APP_NAME\Resources\ChangeLog.html" https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$version/LAST/ChangeLog.html
|
|
|
|
stages:
|
|
- build
|
|
- staging
|
|
- deploy
|
|
- release
|
|
|
|
|
|
# ---------- BUILD ----------
|
|
CORE.Api:build:
|
|
stage: build
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.Api
|
|
SOL_NAME: GPW.CORE.WRKLOG
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.WLOG:build:
|
|
stage: build
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.WRKLOG
|
|
SOL_NAME: GPW.CORE.WRKLOG
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.Smart:build:
|
|
stage: build
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.Smart8
|
|
SOL_NAME: GPW.CORE.SMART8
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.ADM:build:
|
|
stage: build
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.ADM
|
|
SOL_NAME: GPW.CORE.ADM
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
# ---------- STAGING ----------
|
|
CORE.Api:staging:
|
|
stage: staging
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.Api
|
|
SOL_NAME: GPW.CORE.WRKLOG
|
|
only:
|
|
- develop
|
|
needs: ["CORE.Api:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
- dotnet publish -p:PublishProfile=IIS01.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.WLOG:staging:
|
|
stage: staging
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.WRKLOG
|
|
SOL_NAME: GPW.CORE.WRKLOG
|
|
only:
|
|
- develop
|
|
needs: ["CORE.WLOG:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
- dotnet publish -p:PublishProfile=IIS01.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.Smart:staging:
|
|
stage: staging
|
|
tags:
|
|
- win
|
|
environment:
|
|
name: staging
|
|
url: https://iis01.egalware.com/GPW/CORE.Smart
|
|
variables:
|
|
APP_NAME: GPW.CORE.Smart8
|
|
SOL_NAME: GPW.CORE.SMART8
|
|
only:
|
|
- develop
|
|
needs: ["CORE.Smart:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
- dotnet publish -p:PublishProfile=IIS01.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.ADM:staging:
|
|
stage: staging
|
|
tags:
|
|
- win
|
|
environment:
|
|
name: staging
|
|
url: https://iis01.egalware.com/GPW/CORE.ADM8
|
|
variables:
|
|
APP_NAME: GPW.CORE.ADM
|
|
SOL_NAME: GPW.CORE.ADM
|
|
only:
|
|
- develop
|
|
needs: ["CORE.ADM:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
- dotnet publish -p:PublishProfile=IIS01.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
|
|
# ---------- DEPLOY ----------
|
|
CORE.Api:deploy:
|
|
stage: deploy
|
|
tags:
|
|
- win
|
|
environment:
|
|
name: production
|
|
url: https://seriate.egalware.com/GPW/CORE.Smart
|
|
variables:
|
|
APP_NAME: GPW.CORE.Api
|
|
SOL_NAME: GPW.CORE.WRKLOG
|
|
only:
|
|
- main
|
|
needs: ["CORE.Api:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
# IIS PROD
|
|
- dotnet publish -p:PublishProfile=IIS-PROD.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.WLOG:deploy:
|
|
stage: deploy
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.WRKLOG
|
|
SOL_NAME: GPW.CORE.WRKLOG
|
|
only:
|
|
- main
|
|
needs: ["CORE.WLOG:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
# IIS PROD
|
|
- dotnet publish -p:PublishProfile=IIS-PROD.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
- dotnet publish -p:PublishProfile=IIS-PROD8.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.Smart:deploy:
|
|
stage: deploy
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.Smart8
|
|
SOL_NAME: GPW.CORE.SMART8
|
|
only:
|
|
- main
|
|
needs: ["CORE.Smart:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
# IIS EXT
|
|
- dotnet publish -p:PublishProfile=IIS-EXT.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
# IIS INT
|
|
- dotnet publish -p:PublishProfile=IIS-INT.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
CORE.ADM:deploy:
|
|
stage: deploy
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.ADM
|
|
SOL_NAME: GPW.CORE.ADM
|
|
only:
|
|
- main
|
|
needs: ["CORE.ADM:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
# IIS PROD
|
|
- dotnet publish -p:PublishProfile=IIS-PROD.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release -p:username=jenkins -p:Password=$IIS_PWD -p:AllowUntrustedCertificate=true -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.csproj
|
|
|
|
|
|
# ---------- RELEASE ----------
|
|
CORE.Api:release:
|
|
stage: release
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.Api
|
|
SOL_NAME: GPW.CORE.WRKLOG
|
|
only:
|
|
- main
|
|
except:
|
|
- branches
|
|
needs: ["CORE.Api:build"]
|
|
before_script:
|
|
- *nuget-fix
|
|
- dotnet restore "$env:SOL_NAME.sln"
|
|
artifacts:
|
|
paths:
|
|
- publish/
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
- dotnet publish -p:PublishProfile=IISProfile.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release $env:APP_NAME/$env:APP_NAME.csproj -o:publish -p:verbosity=quiet
|
|
# qui il deploy su nexus...
|
|
- *hashBuild
|
|
- *nexusUpload
|
|
# script:
|
|
# - dotnet publish -c Release -o ./publish GPW.CORE.Api/GPW.CORE.Api.csproj
|
|
|
|
CORE.WLOG:release:
|
|
stage: release
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.WRKLOG
|
|
SOL_NAME: GPW.CORE.WRKLOG
|
|
only:
|
|
- main
|
|
except:
|
|
- branches
|
|
needs: ["CORE.WLOG:build"]
|
|
artifacts:
|
|
paths:
|
|
- publish/
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
- dotnet publish -p:PublishProfile=IISProfile.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release $env:APP_NAME/$env:APP_NAME.csproj -o:publish -p:verbosity=quiet
|
|
# qui il deploy su nexus...
|
|
- *hashBuild
|
|
- *nexusUpload
|
|
# script:
|
|
# - dotnet publish -c Release -o ./publish GPW.CORE.WRKLOG/GPW.CORE.WRKLOG.csproj
|
|
|
|
CORE.Smart:release:
|
|
stage: release
|
|
tags:
|
|
- win
|
|
variables:
|
|
APP_NAME: GPW.CORE.Smart8
|
|
SOL_NAME: GPW.CORE.SMART8
|
|
only:
|
|
- main
|
|
except:
|
|
- branches
|
|
needs: ["CORE.Smart:build"]
|
|
artifacts:
|
|
paths:
|
|
- publish/
|
|
script:
|
|
- dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
- dotnet publish -p:PublishProfile=IISProfile.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release $env:APP_NAME/$env:APP_NAME.csproj -o:publish -p:verbosity=quiet
|
|
# qui il deploy su nexus...
|
|
- *hashBuild
|
|
- *nexusUpload
|
|
# script:
|
|
# - dotnet publish -c Release -o ./publish GPW.CORE.WRKLOG/GPW.CORE.WRKLOG.csproj
|
|
|
|
# CORE.ADM:release:
|
|
# stage: release
|
|
# tags:
|
|
# - win
|
|
# variables:
|
|
# APP_NAME: GPW.CORE.ADM
|
|
# SOL_NAME: GPW.CORE.ADM
|
|
# only:
|
|
# - main
|
|
# except:
|
|
# - branches
|
|
# needs: ["CORE.ADM:build"]
|
|
# artifacts:
|
|
# paths:
|
|
# - publish/
|
|
# script:
|
|
# - dotnet build $env:APP_NAME/$env:APP_NAME.csproj
|
|
# - dotnet publish -p:PublishProfile=IISProfile.pubxml -p:RunCodeAnalysis=false -p:Configuration=Release $env:APP_NAME/$env:APP_NAME.csproj -o:publish -p:verbosity=quiet
|
|
# # qui il deploy su nexus...
|
|
# - *hashBuild
|
|
# - *nexusUpload
|
|
# # script:
|
|
# # - dotnet publish -c Release -o ./publish GPW.CORE.WRKLOG/GPW.CORE.WRKLOG.csproj |