Skip to content

Commit

Permalink
Record SHA of package artifact (#353)
Browse files Browse the repository at this point in the history
* Record SHA of package artifact

* Remove outdated section of README
  • Loading branch information
olix0r authored Sep 15, 2019
1 parent d079fac commit c99f643
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ ifdef CARGO_DEBUG
chmod 644 $(PKG_BASE)/linkerd2-proxy.obj ; \
fi
endif
cd $(PKG_ROOT) && tar -czvf $(PKG) $(PKG_NAME) && rm -rf $(PKG_BASE)
cd $(PKG_ROOT) && \
tar -czvf $(PKG) $(PKG_NAME) && \
($(SHASUM) $(PKG) >$(PKG_NAME).txt) && \
rm -rf $(PKG_BASE)


.PHONY: fetch
Expand Down
16 changes: 0 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,22 +52,6 @@ Usually, [Cargo][cargo], Rust's package manager, is used to build and test this
project. If you don't have Cargo installed, we suggest getting it via
https://rustup.rs/.

## Artifacts

Each version of the _master_ branch is published to
`build.l5d.io/linkerd2-proxy/linkerd2-proxy-$PACKAGE_VERSION.tar.gz`. The most recent
version (and the package's SHA256 sum) can be discovered via:

```sh
:; curl https://build.l5d.io/linkerd2-proxy/latest.txt
```

The SHA256 sum of each package version is found at:

```sh
:; curl https://build.l5d.io/linkerd2-proxy/linkerd2-proxy-$PACKAGE_VERSION.txt
```


## Code of conduct

Expand Down

0 comments on commit c99f643

Please sign in to comment.