Skip to content

Commit 9fbae33

Browse files
authored
Merge pull request #2 from Rutik7066/ci-test
ci fix
2 parents 5c9f6bd + eeb46ca commit 9fbae33

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,12 @@ jobs:
127127
run: |
128128
set -e
129129
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
135134
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 &
138136
echo "Golem server started."
139137
- name: Build and test Ollama integration
140138
run: |

0 commit comments

Comments
 (0)