Skip to content

Commit

Permalink
Update CI_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ArkadiuszMichalski authored May 5, 2024
1 parent 456e3b7 commit 558edf1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,14 +353,14 @@ jobs:
- name: build scintilla
working-directory: scintilla/win32/
run: |
$Env:DIR_O = 'D:\a\notepad-plus-plus\notepad-plus-plus\scintilla\bin'
#$Env:DIR_O = 'D:\a\notepad-plus-plus\notepad-plus-plus\scintilla\bin'
#Write-Output (pwd).path
#nmake -E -f scintilla.mak DIR_O='D:\a\notepad-plus-plus\notepad-plus-plus\scintilla\bin'
if ($Env:SCILEX_CMAKE_ALLOW_CACHE -eq "true" -and $${{ steps.cache-restore.outputs.cache-hit == 'true' }}) {
$Now = Get-Date
Get-ChildItem -Path ..\bin -File | ForEach-Object { $_.LastWriteTime = $Now }
#Get-ChildItem -Path .\ -File | ForEach-Object { $_.LastWriteTime = $Now }
nmake -E -f scintilla.mak DIR_O='..\\bin'
nmake -E -f scintilla.mak DIR_O='..\bin'
}
else {
nmake -f scintilla.mak
Expand All @@ -376,14 +376,14 @@ jobs:
$Now = Get-Date
Get-ChildItem -Path ..\bin -File | ForEach-Object { $_.LastWriteTime = $Now }
#Get-ChildItem -Path .\ -File | ForEach-Object { $_.LastWriteTime = $Now }
nmake -E -f lexilla.mak DIR_O='..\\bin'
nmake -E -f lexilla.mak DIR_O='..\bin'
}
else {
nmake -f lexilla.mak
}
Write-Output (Get-ChildItem -Path ..\bin -Recurse -File -Force -ErrorAction SilentlyContinue | Select-Object FullName)
Write-Output (Get-ChildItem -Path .\ -Recurse -File -Force -ErrorAction SilentlyContinue | Select-Object FullName)
exit 1
#exit 1
- name: (cache) Save SciLex files
if: env.SCILEX_CMAKE_ALLOW_CACHE == 'true' && steps.cache-restore.outputs.cache-hit != 'true' && github.event_name == 'push'
Expand Down

0 comments on commit 558edf1

Please sign in to comment.