Skip to content

Commit

Permalink
test(e2e): cluster always install latest
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfreska committed Oct 25, 2024
1 parent ad74b8a commit d743f8c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/hostd-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"executor": "nx:run-commands",
"options": {
"commands": [
"cd internal/cluster && go get -u go.sia.tech/hostd@master",
"cd internal/cluster && go get -u go.sia.tech/renterd@dev",
"cd internal/cluster && go get -u go.sia.tech/walletd@master",
"cd internal/cluster && go mod tidy",
"cd internal/cluster && go build -o bin/clusterd ./cmd/clusterd || echo 'BUILD FAILED'",
"git checkout internal/cluster/go.mod internal/cluster/go.sum",
Expand Down
3 changes: 3 additions & 0 deletions apps/renterd-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"executor": "nx:run-commands",
"options": {
"commands": [
"cd internal/cluster && go get -u go.sia.tech/hostd@master",
"cd internal/cluster && go get -u go.sia.tech/renterd@dev",
"cd internal/cluster && go get -u go.sia.tech/walletd@master",
"cd internal/cluster && go mod tidy",
"cd internal/cluster && go build -o bin/clusterd ./cmd/clusterd || echo 'BUILD FAILED'",
"git checkout internal/cluster/go.mod internal/cluster/go.sum",
Expand Down
3 changes: 3 additions & 0 deletions apps/walletd-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"executor": "nx:run-commands",
"options": {
"commands": [
"cd internal/cluster && go get -u go.sia.tech/hostd@master",
"cd internal/cluster && go get -u go.sia.tech/renterd@dev",
"cd internal/cluster && go get -u go.sia.tech/walletd@master",
"cd internal/cluster && go mod tidy",
"cd internal/cluster && go build -o bin/clusterd ./cmd/clusterd || echo 'BUILD FAILED'",
"git checkout internal/cluster/go.mod internal/cluster/go.sum",
Expand Down

0 comments on commit d743f8c

Please sign in to comment.