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
OpenDAS
ollama
Commits
c5c451ca
Unverified
Commit
c5c451ca
authored
Apr 10, 2024
by
Michael Yang
Committed by
GitHub
Apr 10, 2024
Browse files
Merge pull request #3579 from ollama/mxyng/fix-ci
fix ci
parents
ad90b9ab
2b4ca6cf
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
9 deletions
+3
-9
.github/workflows/test.yaml
.github/workflows/test.yaml
+0
-1
app/tray/tray.go
app/tray/tray.go
+1
-6
examples/go-generate-streaming/main.go
examples/go-generate-streaming/main.go
+1
-1
examples/go-generate/main.go
examples/go-generate/main.go
+1
-1
No files found.
.github/workflows/test.yaml
View file @
c5c451ca
...
...
@@ -5,7 +5,6 @@ on:
paths
:
-
'
**/*'
-
'
!docs/**'
-
'
!examples/**'
-
'
!README.md'
jobs
:
...
...
app/tray/tray.go
View file @
c5c451ca
...
...
@@ -24,10 +24,5 @@ func NewTray() (commontray.OllamaTray, error) {
return
nil
,
fmt
.
Errorf
(
"failed to load icon %s: %w"
,
iconName
,
err
)
}
tray
,
err
:=
InitPlatformTray
(
icon
,
updateIcon
)
if
err
!=
nil
{
return
nil
,
err
}
return
tray
,
nil
return
InitPlatformTray
(
icon
,
updateIcon
)
}
examples/go-generate-streaming/main.go
View file @
c5c451ca
...
...
@@ -5,7 +5,7 @@ import (
"fmt"
"log"
"github.com/
jmorganc
a/ollama/api"
"github.com/
ollam
a/ollama/api"
)
func
main
()
{
...
...
examples/go-generate/main.go
View file @
c5c451ca
...
...
@@ -5,7 +5,7 @@ import (
"fmt"
"log"
"github.com/
jmorganc
a/ollama/api"
"github.com/
ollam
a/ollama/api"
)
func
main
()
{
...
...
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