-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make CI run and test Windows deps on model signing (#86)
For future PRs (as they require more playing with GHA to fix): - support Windows deps on SLSA - support Windows deps on unit tests (for signing) - minimize dependencies - add unit tests for SLSA Signed-off-by: Mihai Maruseac <[email protected]>
- Loading branch information
1 parent
21aa6f8
commit 41f08f7
Showing
5 changed files
with
1,068 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# shellcheck source=/dev/null | ||
source venv/bin/activate || source venv/Scripts/activate | ||
if [[ -f venv/bin/activate ]]; then | ||
source venv/bin/activate | ||
elif [[ -f venv/Scripts/activate ]]; then | ||
source venv/Scripts/activate | ||
else | ||
echo "Cannot activate venv sandbox. Failing" | ||
exit 1 | ||
fi | ||
|
||
echo "Successfully activated venv sandbox. Python is at `which python`" |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.