File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed
Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,10 @@ jobs:
1717 fetch-depth : 0
1818
1919 - name : Install uv
20- uses : astral-sh/setup-uv@v3
20+ uses : astral-sh/setup-uv@v6
2121
2222 - name : Get options
2323 run : uv run nvibrant/version.py >> $GITHUB_ENV
24- shell : bash
2524
2625 - name : Compile
2726 run : uv run nvibrant/build.py
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const char* NVIDIA_DRIVER_VERSION = []() {
3131}();
3232
3333// Nth GPU index to allocate device handle
34- const int NVIDIA_GPU = []() {
34+ const NvU32 NVIDIA_GPU = []() {
3535 if (const char * num = getenv (" NVIDIA_GPU" ))
3636 return atoi (num);
3737 return 0 ;
Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
2- __version__ = "1.0.5 "
2+ __version__ = "1.0.6 "
33
44if (__name__ == "__main__" ):
55 print (f"GHA_VERSION={ __version__ } " )
You can’t perform that action at this time.
0 commit comments