Skip to content

Commit

Permalink
changing all the steps (#2)
Browse files Browse the repository at this point in the history
(cherry picked from commit f21210a)
  • Loading branch information
eecsliu committed Apr 23, 2024
1 parent 78ed603 commit b39b7c0
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions agent/.goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project_name: determined-agent
project_name: determined-agent-release-testing

snapshot:
name_template: "{{ .Env.VERSION }}"
Expand Down Expand Up @@ -28,7 +28,7 @@ brews:
tap:
owner: determined-ai
name: homebrew-determined
url_template: "https://github.com/determined-ai/determined/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
url_template: "https://github.com/determined-ai/determined-release-testing/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
caveats: |
Determined agent config is located at #{etc}/determined/agent.yaml
homepage: "https://github.com/determined-ai/determined"
Expand Down Expand Up @@ -90,7 +90,7 @@ nfpms:
release:
github:
owner: determined-ai
name: determined
name: determined-release-testing

# be sure to keep this in sync between agent/master/helm
# the "include" functionality is only in the pro version
Expand Down
6 changes: 3 additions & 3 deletions agent/.goreleaser_ee.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project_name: hpe-mlde-agent
project_name: hpe-mlde-agent-release-testing

snapshot:
name_template: "{{ .Env.VERSION }}"
Expand Down Expand Up @@ -92,13 +92,13 @@ nfpms:
release:
github:
owner: determined-ai
name: determined-ee
name: determined-ee-release-testing

# be sure to keep this in sync between agent/master/helm
# the "include" functionality is only in the pro version
header: |
## Release Notes
[{{ .Tag }}](https://github.com/determined-ai/determined-ee/blob/{{ .Tag }}/docs/release-notes.rst)
[{{ .Tag }}](https://github.com/determined-ai/determined-ee-release-testing/blob/{{ .Tag }}/docs/release-notes.rst)
dockers:
# amd64
Expand Down
4 changes: 2 additions & 2 deletions agent/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export DOCKER_REPO ?= determinedai

FULL_COMMIT = $(shell git rev-parse HEAD)
SHORT_COMMIT = $(shell git rev-parse HEAD | head -c9)
PROJECT_NAME = determined-agent
EE_PROJECT_NAME = hpe-mlde-agent
PROJECT_NAME = determined-agent-release-testing
EE_PROJECT_NAME = hpe-mlde-agent-release-testing
ARCHS = amd64 arm64 ppc64
MULTI_ARCH_IMAGES = $(shell for arch in $(ARCHS); do echo $(DOCKER_REPO)/$(PROJECT_NAME):$(FULL_COMMIT)-$$arch; done)
EE_MULTI_ARCH_IMAGES = $(shell for arch in $(ARCHS); do echo $(DOCKER_REPO)/$(EE_PROJECT_NAME):$(FULL_COMMIT)-$$arch; done)
Expand Down
6 changes: 3 additions & 3 deletions master/.goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project_name: determined-master
project_name: determined-master-release-testing

before:
hooks:
Expand Down Expand Up @@ -57,7 +57,7 @@ brews:
tap:
owner: determined-ai
name: homebrew-determined
url_template: "https://github.com/determined-ai/determined/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
url_template: "https://github.com/determined-ai/determined-release-testing/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
caveats: |
Determined master config is located at #{etc}/determined/master.yaml
Expand Down Expand Up @@ -138,7 +138,7 @@ nfpms:
release:
github:
owner: determined-ai
name: determined
name: determined-release-testing

# be sure to keep this in sync between agent/master/helm
# the "include" functionality is only in the pro version
Expand Down
6 changes: 3 additions & 3 deletions master/.goreleaser_ee.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project_name: hpe-mlde-master
project_name: hpe-mlde-master-release-testing

before:
hooks:
Expand Down Expand Up @@ -144,13 +144,13 @@ nfpms:
release:
github:
owner: determined-ai
name: determined-ee
name: determined-ee-release-testing

# be sure to keep this in sync between agent/master/helm
# the "include" functionality is only in the pro version
header: |
## Release Notes
[{{ .Tag }}](https://github.com/determined-ai/determined-ee/blob/{{ .Tag }}/docs/release-notes.rst)
[{{ .Tag }}](https://github.com/determined-ai/determined-ee-release-testing/blob/{{ .Tag }}/docs/release-notes.rst)
dockers:
# amd64
Expand Down
4 changes: 2 additions & 2 deletions master/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export DOCKER_REPO ?= determinedai

FULL_COMMIT = $(shell git rev-parse HEAD)
SHORT_COMMIT = $(shell git rev-parse HEAD | head -c9)
PROJECT_NAME = determined-master
EE_PROJECT_NAME = hpe-mlde-master
PROJECT_NAME = determined-master-release-testing
EE_PROJECT_NAME = hpe-mlde-master-release-testing
ARCHS = amd64 arm64 ppc64
ARCH_SMALL = amd64-shared-cluster
MULTI_ARCH_IMAGES = $(shell for arch in $(ARCHS); do echo $(DOCKER_REPO)/$(PROJECT_NAME):$(FULL_COMMIT)-$$arch; done)
Expand Down

0 comments on commit b39b7c0

Please sign in to comment.