Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
fengzch-das
nunchaku
Commits
f25fa6ff
"vscode:/vscode.git/clone" did not exist on "698a12ae0112c62af62b350111dd65edbab91f9f"
Commit
f25fa6ff
authored
May 26, 2025
by
muyangli
Browse files
add windows wheels
parent
b2cc2361
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
+42
-0
.github/workflows/nightly-build.yaml
.github/workflows/nightly-build.yaml
+42
-0
No files found.
.github/workflows/nightly-build.yaml
View file @
f25fa6ff
...
@@ -103,3 +103,45 @@ jobs:
...
@@ -103,3 +103,45 @@ jobs:
run
:
|
run
:
|
cd ..
cd ..
rm -rf *nunchaku*
rm -rf *nunchaku*
windows-wheels
:
name
:
Build the windows nightly wheels
runs-on
:
[
self-hosted
,
windows-build
]
needs
:
tag
if
:
needs.tag.outputs.is_dev == 'true'
steps
:
-
name
:
Checkout to the tag
uses
:
actions/checkout@v4
with
:
fetch-depth
:
0
ref
:
${{ needs.tag.outputs.tag_name }}
submodules
:
true
-
name
:
Show current commit
run
:
git log -1 --oneline
-
name
:
Build wheels
run
:
|
C:\Users\muyang\miniconda3\condabin\activate.bat activate
scripts\build_all_windows_wheels.cmd
-
name
:
Upload wheels to GitHub Release
uses
:
softprops/action-gh-release@v2
with
:
files
:
dist/*.whl
name
:
Nunchaku Nightly ${{ needs.tag.outputs.tag_name }}
tag_name
:
${{ needs.tag.outputs.tag_name }}
prerelease
:
true
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
windows-clean-up
:
if
:
always()
needs
:
[
windows-wheels
]
runs-on
:
[
self-hosted
,
windows-build
]
steps
:
-
name
:
Clean up
run
:
|
cd ..
powershell -Command "Remove-Item -Recurse -Force *nunchaku*"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment