File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -127,14 +127,12 @@ jobs:
127
127
run : |
128
128
set -e
129
129
echo "Installing Golem server"
130
- url=$(curl -s https://api.github.com/repos/golemcloud/golem-cli/releases/latest \
131
- | grep "browser_download_url.*x86_64-unknown-linux-gnu" \
132
- | cut -d '"' -f 4)
133
- sudo curl -L "$url" -o /usr/local/bin/golem
134
- sudo chmod +x /usr/local/bin/golem
130
+ sudo curl -L https://github.com/golemcloud/golem-cli/releases/download/v1.2.3/golem-x86_64-unknown-linux-gnu -o ./golem
131
+ sudo chmod +x ./golem
132
+ sudo mv ./golem /usr/local/bin/golem
133
+ golem --version
135
134
golem profile switch local
136
- golem server run &
137
- timeout 60 bash -c 'until curl -sf http://localhost:9881; do sleep 2; done'
135
+ nohup golem server run >golem-server.log 2>&1 &
138
136
echo "Golem server started."
139
137
- name : Build and test Ollama integration
140
138
run : |
You can’t perform that action at this time.
0 commit comments