Skip to content

Commit

Permalink
Update make.yml
Browse files Browse the repository at this point in the history
Removed not working Windows version (targeting unavailable resource to update Lazarus)
  • Loading branch information
peazip authored Feb 2, 2025
1 parent 8706384 commit 03ecb57
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,3 @@ jobs:
set -xeuo pipefail
sudo bash -c 'apt-get update; apt-get install -y lazarus' >/dev/null
instantfpc -Fu/usr/lib/lazarus/*/components/lazutils .github/workflows/make.pas
- name: Build on Windows
if: runner.os == 'Windows'
shell: powershell
run: |
New-Variable -Option Constant -Name VAR -Value @{
Uri = 'https://sourceforge.net/projects/lazarus/files/Lazarus%20Windows%2064%20bits/Lazarus%203.6/lazarus-3.6-fpc-3.2.2-win64.exe/download'
OutFile = (New-TemporaryFile).FullName + '.exe'
}
Invoke-WebRequest @VAR
& $VAR.OutFile.Replace('Temp', 'Temp\.') /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART | Out-Null
$Env:PATH+=';C:\Lazarus'
$Env:PATH+=';C:\Lazarus\fpc\3.2.2\bin\x86_64-win64'
(Get-Command 'lazbuild').Source | Out-Host
(Get-Command 'instantfpc').Source | Out-Host
instantfpc '-FuC:\Lazarus\components\lazutils' .github/workflows/make.pas

0 comments on commit 03ecb57

Please sign in to comment.