We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 889e438 commit 55f7ca2Copy full SHA for 55f7ca2
.github/workflows/make.ps1
@@ -71,8 +71,14 @@ Function Build-Project {
71
true {
72
((Get-ChildItem -Filter '*.lpk' -Recurse -File –Path $Var.tst).FullName |
73
ForEach-Object {
74
- $Env:INSTANTFPC = $VAR.opt
75
- $Output = (& instantfpc $_ --all --format=plain)
+ $Output = (
+ & lazbuild --build-all --recursive --no-write-project $VAR.tst |
76
+ Where-Object {
77
+ $_.Contains('Linking')
78
+ } | ForEach-Object {
79
+ $_.Split(' ')[2]
80
+ }
81
+ )
82
$exitCode = Switch ($LastExitCode) {
83
0 {0}
84
Default {
0 commit comments