File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ jobs:
25
25
echo "shark_package_version=${shark_package_version}" >> $GITHUB_OUTPUT
26
26
cat << EOF > ./version_info.json
27
27
{
28
- "package-version": "${shark_package_version}",
28
+ "package-version": "${shark_package_version}"
29
29
}
30
30
EOF
31
31
cat ./version_info.json
32
32
- name : Upload version_info.json
33
33
uses : actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
34
34
with :
35
- name : version_info.json
35
+ name : version_info
36
36
path : version_info.json
37
37
38
38
build_packages :
67
67
- name : Download version_info.json
68
68
uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
69
69
with :
70
- name : version_info.json
71
- path : version_info.json
70
+ name : version_info
71
+ path : shortfin/
72
72
73
73
- name : Build shortfin (Linux x86_64, ${{ matrix.python-version }})
74
74
if : " matrix.package == 'shortfin' && matrix.build-family == 'linux-x86_64'"
Original file line number Diff line number Diff line change
1
+ # Local-only config options
2
+ version_info.json
Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ def find_git_version():
164
164
PACKAGE_VERSION = version_info .get ("package-version" )
165
165
if not PACKAGE_VERSION :
166
166
PACKAGE_VERSION = f"0.dev0+{ git_version or '0' } "
167
+ print (f"Using PACKAGE_VERSION: '{ PACKAGE_VERSION } '" )
167
168
168
169
169
170
def maybe_nuke_cmake_cache (cmake_build_dir ):
You can’t perform that action at this time.
0 commit comments