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 16, 2024
1 parent 2112d55 commit 03354a7
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -356,11 +356,8 @@ jobs:
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 }
nmake -f scintilla.mak DIR_O=..\bin
}
else {
nmake -f scintilla.mak
}
nmake -f scintilla.mak DIR_O=..\bin
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
Expand All @@ -370,12 +367,9 @@ jobs:
run: |
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 }
nmake -f lexilla.mak DIR_O=..\bin
}
else {
nmake -f lexilla.mak
Get-ChildItem -Path ..\bin -File | ForEach-Object { $_.LastWriteTime = $Now }
}
nmake -f lexilla.mak DIR_O=..\bin
- 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 03354a7

Please sign in to comment.