Skip to content

Commit

Permalink
Merge pull request #9059 from gyuho/aci-build
Browse files Browse the repository at this point in the history
*: deprecate ACI for v3.4 release cycle
  • Loading branch information
gyuho committed Dec 21, 2017
2 parents 2110b21 + 4388f04 commit c8dc19b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 93 deletions.
6 changes: 3 additions & 3 deletions Documentation/dev-internal/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ The following commands are used for public release sign:

```
cd release
for i in etcd-*{.zip,.tar.gz,.aci}; do gpg2 --default-key $SUBKEYID --armor --output ${i}.asc --detach-sign ${i}; done
for i in etcd-*{.zip,.tar.gz,.aci}; do gpg2 --verify ${i}.asc ${i}; done
for i in etcd-*{.zip,.tar.gz}; do gpg2 --default-key $SUBKEYID --armor --output ${i}.asc --detach-sign ${i}; done
for i in etcd-*{.zip,.tar.gz}; do gpg2 --verify ${i}.asc ${i}; done
# sign zipped source code files
wget https://github.com/coreos/etcd/archive/${VERSION}.zip
Expand All @@ -99,7 +99,7 @@ The public key for GPG signing can be found at [CoreOS Application Signing Key](

- Set release title as the version name.
- Follow the format of previous release pages.
- Attach the generated binaries, aci image and signatures.
- Attach the generated binaries and signatures.
- Select whether it is a pre-release.
- Publish the release!

Expand Down
84 changes: 0 additions & 84 deletions scripts/build-aci

This file was deleted.

6 changes: 0 additions & 6 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ pushd "${ETCD_ROOT}" >/dev/null
echo Building etcd binary...
./scripts/build-binary "${VERSION}"

# ppc64le not yet supported by acbuild.
for TARGET_ARCH in "amd64" "arm64"; do
echo Building ${TARGET_ARCH} aci image...
GOARCH=${TARGET_ARCH} BINARYDIR=release/etcd-${VERSION}-linux-${TARGET_ARCH} BUILDDIR=release ./scripts/build-aci "${VERSION}"
done

for TARGET_ARCH in "amd64" "arm64" "ppc64le"; do
echo Building ${TARGET_ARCH} docker image...
GOARCH=${TARGET_ARCH} BINARYDIR=release/etcd-${VERSION}-linux-${TARGET_ARCH} BUILDDIR=release ./scripts/build-docker "${VERSION}"
Expand Down

0 comments on commit c8dc19b

Please sign in to comment.