-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add windows targets in makefile (#192)
Issue #, if available: *Description of changes:* finch-core changes for windev. - Makefile changes - rootfs dockerfile change - lima submodule updates *Testing done:* Yes - [X] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. --------- Signed-off-by: Vishwas Siravara <[email protected]> Signed-off-by: Justin Alvarez <[email protected]> Signed-off-by: Gavin Inglis <[email protected]> Co-authored-by: Justin <[email protected]> Co-authored-by: Gavin Inglis <[email protected]>
- Loading branch information
1 parent
15f4f79
commit 9bc03a0
Showing
5 changed files
with
139 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
_output/ | ||
downloads/ | ||
wingit-temp/ | ||
*.idea | ||
*.DS_Store | ||
*.bak | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<# | ||
Verify file hashes using pure PowerShell | ||
#> | ||
param ( | ||
# Dependency file path | ||
[Parameter(Mandatory=$true)] | ||
[string]$DependencyFilePath, | ||
|
||
# Dependency hash | ||
[Parameter(Mandatory=$true)] | ||
[string]$DependencyHash = 'out.png' | ||
) | ||
|
||
if (!(Get-FileHash -Algorithm SHA256 "$DependencyFilePath").Hash -eq $DependencyHash) { | ||
$host.SetShouldExit(-1); exit | ||
} else { | ||
Write-Output "Verified $DependencyFilePath" | ||
} |