No need to archive the binaries anymore

Signed-off-by: David Gageot <david@gageot.net>
This commit is contained in:
David Gageot
2015-12-15 09:13:09 +01:00
parent 4fb50623b5
commit ff5dc0c644
2 changed files with 2 additions and 11 deletions

View File

@@ -22,10 +22,7 @@ Machine core maintainers who might find themselves performing a release.
long time so you may want to use a script like [this one for cross-compiling
them on DigitalOcean in
parallel](https://gist.github.com/nathanleclaire/7f62fc5aa3df19a50f4e).
3. **Archive Binaries** -- The binaries are distributed in `.zip` files so you
need to run the `make release-pack` target to generate the distributed
artifacts.
4. **Upload Archives** -- Use a script or sequence of commands such as [this
4. **Upload Binaries** -- Use a script or sequence of commands such as [this
one](https://gist.github.com/nathanleclaire/a9bc1f8d60070aeda361) to create a
git tag for the released version, a GitHub release for the released version, and
to upload the released binaries. At the time of writing the `release` target in

View File

@@ -5,10 +5,7 @@ release-checksum:
))
@:
release-pack:
find ./bin -type d -mindepth 1 -exec zip -r -j {}.zip {} \;
release: clean dco fmt test test-long build-x release-pack release-checksum
release: clean dco fmt test test-long build-x release-checksum
# Github infos
GH_USER ?= $(shell git config --get remote.origin.url | sed -e 's/.*[:/]\(.*\)\/\([^.]*\)\(.*\)/\1/')
GH_REPO ?= $(shell git config --get remote.origin.url | sed -e 's/.*[:/]\(.*\)\/\([^.]*\)\(.*\)/\2/')
@@ -41,6 +38,3 @@ release: clean dco fmt test test-long build-x release-pack release-checksum
--file $(MACHINE_FILE) \
) \
)
%:
@: