-
Tim Harvey
- PowerBuilder
- Friday, 28 March 2025 03:07 PM UTC
I am trying to automatically build a powerbuilder executable in github actions when a release tag is created.
name: Build and Attach to Pre-release
on:
push
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install MSI Package 2
run: |
$file = "PBCLTRT 22.2.0.3397.msi"
$log = "install.log"
$procMain = Start-Process "msiexec" "/i `"$file`" /qn /l*! `"$log`"" -NoNewWindow -PassThru
$procLog = Start-Process "powershell" "Get-Content -Path `"$log`" -Wait" -NoNewWindow -PassThru
$procMain.WaitForExit()
$procLog.Kill()
- name: Upload MSI Log
uses: actions/upload-artifact@v4 # Use the latest version
with:
name: install
path: ${{ github.workspace }}/install.log
- name: Run PBAutoBuild210.exe
shell: cmd
run: |
cd C:\
PBAutoBuild220 /f ./ebadmin.json /l deploy.log /le error.log /lu unsupport.log
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: ./build/ebadmin_Installer.exe
I start by trying to install an MSI package for the Powerbuilder Runtime, and then try to run the AutoBuild.
The Runtimes install successfully, but the PBAutoBuild fails because it can't find the Runtime.
20:07:13 [Normal] PBAutoBuild Version: 22.2.0.3397.
20:07:13 [Normal] Work Path: D:\a\EBAdmin\EBAdmin\pbautobuild220.exe.
20:07:13 [Normal] Runtime Version: 22.2.0.3397.
20:07:13 [Normal] Start processing parse json to model code segment.
20:07:13 [Error] Failed to find the Runtime version specified in the file.
Bye (-_-)
The one thing I am noticing is when running the MSI package, The runtimes are being installed here:
Directory of C:\Program Files (x86)\Appeon\PowerBuilder Runtime Packager\Runtime 22.2.0.3397
03/27/2025 08:07 PM <DIR> .
03/27/2025 08:07 PM <DIR> ..
03/12/2020 02:10 PM 2,753 APACHE_LICENSE.TXT
10/29/2024 12:01 AM 29,384 AtlAuxiliary.dll
10/28/2024 11:58 PM 253,640 libjcc.dll
10/28/2024 11:58 PM 31,432 libjtml.dll
10/28/2024 11:58 PM 69,320 libjutils.dll
10/28/2024 11:58 PM 397,000 libsybunic.dll
10/28/2024 11:58 PM 24,264 nlwnsck.dll
10/28/2024 11:58 PM 498,376 pbase.dll
10/28/2024 11:58 PM 1,642,696 pbcompression.dll
10/28/2024 11:58 PM 78,536 pbcomrt.dll
10/29/2024 12:00 AM 768,200 pbcrypt.dll
10/28/2024 11:58 PM 319,176 pbdpl.dll
10/28/2024 11:58 PM 5,733,576 pbdwe.dll
10/28/2024 09:47 PM 192,512 pbdwr220.pbd
10/29/2024 12:00 AM 2,165,960 pbhttpclient.dll
10/28/2024 11:59 PM 178,888 pbjag.dll
10/29/2024 12:00 AM 262,344 pbjson.dll
10/28/2024 11:59 PM 111,816 pboauth.dll
10/28/2024 11:59 PM 4,019,400 pbresource.dll
10/28/2024 11:59 PM 980,680 pbrestclient.dll
10/28/2024 11:59 PM 2,939,592 pbshr.dll
10/28/2024 11:59 PM 24,776 pbsysfunc.dll
10/29/2024 12:01 AM 221,384 pbtabbedbar.dll
10/28/2024 11:59 PM 88,776 pbtra.dll
10/28/2024 11:59 PM 43,208 pbtrs.dll
10/28/2024 11:59 PM 3,438,280 pbUIS.dll
10/28/2024 11:59 PM 9,213,128 pbvm.dll
27 File(s) 33,729,097 bytes
2 Dir(s) 92,424,445,952 bytes free
But there are located in C:\Program Files (x86)\Appeon\Common\PowerBuilder\Runtime 22.2.0.3397 on my local machine. Is this causing me the issue? Can I override the MSI package and or PBAutoBuild220 to change the runtime locations?
Find Questions by Tag
Helpful?
If a reply or comment is helpful for you, please don’t hesitate to click the Helpful button. This action is further confirmation of their invaluable contribution to the Appeon Community.