Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
208 changes: 104 additions & 104 deletions .github/workflows/createrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,75 +82,75 @@ jobs:
name: callbackhandler
path: C:\Temp\callbackhandler

- name: Stop and Remove Existing Windows Service (if applicable)
shell: powershell
- name: Stop and Remove Existing Windows Service
shell: cmd
run: |
$serviceName = "CallbackHandler"

# Stop service if running
if (Get-Service $serviceName -ErrorAction SilentlyContinue) {
Write-Host "Stopping existing service..."
Stop-Service -Name $serviceName -Force -ErrorAction SilentlyContinue

# Remove service
Write-Host "Deleting existing service..."
sc.exe delete $serviceName
}

set servicename=CallbackHandler

sc query %servicename% >nul 2>&1
if %errorlevel%==0 (
echo Stopping service...
sc stop %servicename%
echo Deleting service...
sc delete %servicename%
) else (
echo Service does not exist.
)
- name: Unzip the files
shell: powershell
shell: cmd
run: |
$targetPath = "C:\txnproc\CallbackHandler"
set target=C:\txnproc\CallbackHandler

if (!(Test-Path $targetPath)) {
New-Item -ItemType Directory -Path $targetPath | Out-Null
}
if not exist "%target%" (
mkdir "%target%"
)

Expand-Archive -Path "C:\Temp\callbackhandler\callbackhandler.zip" -DestinationPath $targetPath -Force
tar -xf C:\Temp\callbackhandler\callbackhandler.zip -C "%target%"

# Install .NET Runtime if needed. Adjust for the actual version (example: .NET 9 Runtime)
- name: Install .NET Runtime
shell: powershell
shell: cmd
run: |
# Check if dotnet 10 is installed
$dotnetVersion = (& dotnet --list-runtimes 2>$null | Select-String "Microsoft\.NETCore\.App 10" | Measure-Object).Count
if ($dotnetVersion -eq 0) {
Write-Host "Installing .NET 10 Runtime..."
set dotnetPath=C:\Program Files\dotnet\shared\Microsoft.NETCore.App
dir "%dotnetPath%\10*" >nul 2>&1
if errorlevel 1 (
echo Installing .NET 10 Runtime...
curl -L -o dotnet-runtime-10.exe https://download.visualstudio.microsoft.com/download/pr/6daeb1c2-6c1d-4c34-a4ba-5f12b5e3a884/dotnet-runtime-10.0.0-win-x64.exe
dotnet-runtime-10.exe /quiet
del dotnet-runtime-10.exe
) else (
echo .NET 10 Runtime already installed.
)

$installerUrl = "https://download.visualstudio.microsoft.com/download/pr/6daeb1c2-6c1d-4c34-a4ba-5f12b5e3a884/dotnet-runtime-10.0.0-win-x64.exe"
$installerPath = "dotnet-runtime-10.exe"
- name: Install and Start Windows Service
shell: cmd
run: |
set servicename=CallbackHandler
set servicedisplay=Transaction Processing - Callback Handler
set workdir=C:\Services\CallbackHandler
set dllname=CallbackHandler.dll
set exepath=C:\Windows\System32\dotnet.exe

Invoke-WebRequest -Uri $installerUrl -OutFile $installerPath
Start-Process ".\dotnet-runtime-10.exe" -ArgumentList "/quiet" -Wait
set fullcmd="%exepath% \"%workdir%\%dllname%\""

Remove-Item ".\dotnet-runtime-10.exe"
}
else {
Write-Host ".NET 10 Runtime already installed."
}
echo Creating service...
sc create %servicename% binPath= "%fullcmd%" start= auto

- name: Install and Start Windows Service
shell: powershell
run: |
$serviceName = "CallbackHandler"
$serviceDisplay = "Transaction Processing - Callback Handler"
$workingDirectory = "C:\Services\CallbackHandler"
$dllName = "CallbackHandler.dll"
$exePath = "C:\Windows\System32\dotnet.exe"
$fullCmd = "`"$exePath`" `"$workingDirectory\$dllName`""
echo Setting service description...
sc description %servicename% "%servicedisplay%"

# Create the service
Write-Host "Creating Windows Service..."
sc.exe create $serviceName binPath= "$fullCmd" start= auto
echo Configuring failure actions...
sc failure %servicename% actions= restart/60000/restart/60000/restart/60000 reset= 86400

# Set description
sc.exe description $serviceName "$serviceDisplay"
echo Setting failure flag (required on some systems)...
sc failureflag %servicename% 1

# Start service
Start-Service -Name $serviceName
echo Starting service...
sc start %servicename%

# Show status
Get-Service -Name $serviceName
echo Status:
sc query %servicename%

deployproduction:
runs-on: [productionserver, windows]
Expand All @@ -165,75 +165,75 @@ jobs:
name: callbackhandler
path: C:\Temp\callbackhandler

- name: Stop and Remove Existing Windows Service (if applicable)
shell: powershell
- name: Stop and Remove Existing Windows Service
shell: cmd
run: |
$serviceName = "CallbackHandler"

# Stop service if running
if (Get-Service $serviceName -ErrorAction SilentlyContinue) {
Write-Host "Stopping existing service..."
Stop-Service -Name $serviceName -Force -ErrorAction SilentlyContinue

# Remove service
Write-Host "Deleting existing service..."
sc.exe delete $serviceName
}

set servicename=CallbackHandler

sc query %servicename% >nul 2>&1
if %errorlevel%==0 (
echo Stopping service...
sc stop %servicename%
echo Deleting service...
sc delete %servicename%
) else (
echo Service does not exist.
)
- name: Unzip the files
shell: powershell
shell: cmd
run: |
$targetPath = "C:\txnproc\CallbackHandler"
set target=C:\txnproc\CallbackHandler

if (!(Test-Path $targetPath)) {
New-Item -ItemType Directory -Path $targetPath | Out-Null
}
if not exist "%target%" (
mkdir "%target%"
)

Expand-Archive -Path "C:\Temp\callbackhandler\callbackhandler.zip" -DestinationPath $targetPath -Force
tar -xf C:\Temp\callbackhandler\callbackhandler.zip -C "%target%"

# Install .NET Runtime if needed. Adjust for the actual version (example: .NET 9 Runtime)
- name: Install .NET Runtime
shell: powershell
shell: cmd
run: |
# Check if dotnet 10 is installed
$dotnetVersion = (& dotnet --list-runtimes 2>$null | Select-String "Microsoft\.NETCore\.App 10" | Measure-Object).Count
if ($dotnetVersion -eq 0) {
Write-Host "Installing .NET 10 Runtime..."
set dotnetPath=C:\Program Files\dotnet\shared\Microsoft.NETCore.App
dir "%dotnetPath%\10*" >nul 2>&1
if errorlevel 1 (
echo Installing .NET 10 Runtime...
curl -L -o dotnet-runtime-10.exe https://download.visualstudio.microsoft.com/download/pr/6daeb1c2-6c1d-4c34-a4ba-5f12b5e3a884/dotnet-runtime-10.0.0-win-x64.exe
dotnet-runtime-10.exe /quiet
del dotnet-runtime-10.exe
) else (
echo .NET 10 Runtime already installed.
)

$installerUrl = "https://download.visualstudio.microsoft.com/download/pr/6daeb1c2-6c1d-4c34-a4ba-5f12b5e3a884/dotnet-runtime-10.0.0-win-x64.exe"
$installerPath = "dotnet-runtime-10.exe"
- name: Install and Start Windows Service
shell: cmd
run: |
set servicename=CallbackHandler
set servicedisplay=Transaction Processing - Callback Handler
set workdir=C:\Services\CallbackHandler
set dllname=CallbackHandler.dll
set exepath=C:\Windows\System32\dotnet.exe

Invoke-WebRequest -Uri $installerUrl -OutFile $installerPath
Start-Process ".\dotnet-runtime-10.exe" -ArgumentList "/quiet" -Wait
set fullcmd="%exepath% \"%workdir%\%dllname%\""

Remove-Item ".\dotnet-runtime-10.exe"
}
else {
Write-Host ".NET 10 Runtime already installed."
}
echo Creating service...
sc create %servicename% binPath= "%fullcmd%" start= auto

- name: Install and Start Windows Service
shell: powershell
run: |
$serviceName = "CallbackHandler"
$serviceDisplay = "Transaction Processing - Callback Handler"
$workingDirectory = "C:\Services\CallbackHandler"
$dllName = "CallbackHandler.dll"
$exePath = "C:\Windows\System32\dotnet.exe"
$fullCmd = "`"$exePath`" `"$workingDirectory\$dllName`""
echo Setting service description...
sc description %servicename% "%servicedisplay%"

# Create the service
Write-Host "Creating Windows Service..."
sc.exe create $serviceName binPath= "$fullCmd" start= auto
echo Configuring failure actions...
sc failure %servicename% actions= restart/60000/restart/60000/restart/60000 reset= 86400

# Set description
sc.exe description $serviceName "$serviceDisplay"
echo Setting failure flag (required on some systems)...
sc failureflag %servicename% 1

# Start service
Start-Service -Name $serviceName
echo Starting service...
sc start %servicename%

# Show status
Get-Service -Name $serviceName
echo Status:
sc query %servicename%

buildwindows:
name: "Windows Release"
Expand Down
Loading