Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/huggingfaceTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
contents: read
jobs:
HuggingFace-Tests:
name: HuggingFace tests (${{ matrix.os.name }})
name: HuggingFace tests (${{ matrix.os.name }}, huggingface_hub ${{ matrix.hf_version }})
strategy:
fail-fast: false
matrix:
Expand All @@ -19,6 +19,10 @@ jobs:
version: 2022
- name: macos
version: 14
# 1.20.0/1.29.0 exercise huggingface_hub's stricter RepoUrl/parse_hf_uri
# parsing (PR #4324) against Artifactory's commitUrl, fixed in
# jfrog/jfrog-cli-artifactory#548 (this repo's go.mod is bumped to include it).
hf_version: ['1.19.0', '1.20.0', '1.29.0']
runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }}
steps:
- name: Skip macOS - JGC-413
Expand Down Expand Up @@ -55,10 +59,7 @@ jobs:
- name: Install HuggingFace Library
if: matrix.os.name != 'macos'
run: |
# Pin to 1.19.0: huggingface_hub 1.20.0 made RepoUrl parse the commit
# response's commitUrl field strictly as an hf:// URI (PR #4324), which
# breaks against Artifactory's placeholder commitUrl value.
pip install "huggingface_hub==1.19.0"
pip install "huggingface_hub==${{ matrix.hf_version }}"
shell: bash

- name: Debug macOS Environment and Set Timeout
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ require (
github.com/jfrog/build-info-go v1.13.1-0.20260916133330-b238519a26ff
github.com/jfrog/gofrog v1.7.7
github.com/jfrog/jfrog-cli-application v1.0.2-0.20260820134442-c8629258ff3a
github.com/jfrog/jfrog-cli-artifactory v0.8.1-0.20260916135713-bed01c2d7f80
github.com/jfrog/jfrog-cli-artifactory v0.8.1-0.20260921100410-91bb546a78fb
github.com/jfrog/jfrog-cli-core/v2 v2.60.1-0.20260909093400-32a7208a18bd
github.com/jfrog/jfrog-cli-evidence v0.11.1-0.20260824063609-79b735ec565e
github.com/jfrog/jfrog-cli-platform-services v1.10.1-0.20260618062042-6053ab368cab
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ github.com/jfrog/jfrog-apps-config v1.0.1 h1:mtv6k7g8A8BVhlHGlSveapqf4mJfonwvXYL
github.com/jfrog/jfrog-apps-config v1.0.1/go.mod h1:8AIIr1oY9JuH5dylz2S6f8Ym2MaadPLR6noCBO4C22w=
github.com/jfrog/jfrog-cli-application v1.0.2-0.20260820134442-c8629258ff3a h1:7GhcPfi+k9oOAJdCsKWjymnqH0e7DQZ1soVhbneYnGY=
github.com/jfrog/jfrog-cli-application v1.0.2-0.20260820134442-c8629258ff3a/go.mod h1:p8yLtbmCxxQucIbLZKnWu0F+EDtj6NLXbRQCEK/nb6o=
github.com/jfrog/jfrog-cli-artifactory v0.8.1-0.20260916135713-bed01c2d7f80 h1:/nW3wAWddLmNGL41UNbBWxmrTIsmvcUeotNxf2TOWCc=
github.com/jfrog/jfrog-cli-artifactory v0.8.1-0.20260916135713-bed01c2d7f80/go.mod h1:LiwWRqnUcVP8ia7109NJveSEQX62uOh1ItwdoDJusFY=
github.com/jfrog/jfrog-cli-artifactory v0.8.1-0.20260921100410-91bb546a78fb h1:REebsVGc3EGBZZeWv7MWoqIfozCSMM8xR4NSDlQgna4=
github.com/jfrog/jfrog-cli-artifactory v0.8.1-0.20260921100410-91bb546a78fb/go.mod h1:LiwWRqnUcVP8ia7109NJveSEQX62uOh1ItwdoDJusFY=
github.com/jfrog/jfrog-cli-core/v2 v2.60.1-0.20260909093400-32a7208a18bd h1:tfC6CtOpqWoU/1V4ymBL0GnhM2kbq5JTGSaAk9eOybg=
github.com/jfrog/jfrog-cli-core/v2 v2.60.1-0.20260909093400-32a7208a18bd/go.mod h1:SwV+DNLBnWLxBeNeZpJk+xxAbqJ8ywq1va56up+AGu4=
github.com/jfrog/jfrog-cli-evidence v0.11.1-0.20260824063609-79b735ec565e h1:+QYbewvK+PZKbfPpxYmy0bewhqMFtJPk/tUbCICjf8U=
Expand Down
Loading