-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2175 from Sifchain/feature/build-updates
[ChainOps] Build updates
- Loading branch information
Showing
2 changed files
with
19 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,50 +13,41 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v2 | ||
with: | ||
repository: Sifchain/sifchain-deploy | ||
path: deploy | ||
repository: Sifchain/sifchain-devops | ||
path: sifchain-devops | ||
token: "${{ secrets.GIT_PAT }}" | ||
|
||
- name: Login to Docker Hub | ||
run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/[email protected] | ||
|
||
- if: contains(github.ref, 'devnet') | ||
run: | | ||
echo "CHAINNET=testnet" >> "$GITHUB_ENV" | ||
- if: contains(github.ref, 'testnet') | ||
run: | | ||
echo "CHAINNET=testnet" >> "$GITHUB_ENV" | ||
- if: contains(github.ref, 'betanet') | ||
- name: Get version | ||
id: version | ||
run: | | ||
echo "CHAINNET=betanet" >> "$GITHUB_ENV" | ||
- if: contains(github.ref, 'mainnet') | ||
run: | | ||
echo "CHAINNET=mainnet" >> "$GITHUB_ENV" | ||
echo "::set-output name=version::$(cat version)" | ||
- name: Build docker images | ||
run: | | ||
echo ${{ env.CHAINNET }} | ||
make CHAINNET=${{ env.CHAINNET }} IMAGE_TAG=${{ env.GITHUB_REF_SLUG }} BINARY=sifnoded build-image | ||
make CHAINNET=${{ env.CHAINNET }} IMAGE_TAG=${{ env.GITHUB_REF_SLUG }} BINARY=ebrelayer build-image | ||
make IMAGE_TAG=${{ steps.version.outputs.version }} BINARY=sifnoded build-image | ||
make IMAGE_TAG=${{ steps.version.outputs.version }} BINARY=ebrelayer build-image | ||
- name: Push docker images | ||
run: | | ||
docker push sifchain/sifnoded:${{ env.GITHUB_REF_SLUG }} | ||
docker push sifchain/ebrelayer:${{ env.GITHUB_REF_SLUG }} | ||
docker push sifchain/sifnoded:${{ steps.version.outputs.version }} | ||
docker push sifchain/ebrelayer:${{ steps.version.outputs.version }} | ||
- name: Get commit hash | ||
id: hash | ||
run: | | ||
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | ||
- name: Release a new sifnoded binary | ||
uses: ./deploy/release | ||
uses: ./sifchain-devops/release | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
goos: linux | ||
goarch: amd64 | ||
goversion: "1.16" | ||
project_path: "./cmd/sifnoded" | ||
binary_name: "sifnoded" | ||
ldflags: "-X github.com/cosmos/cosmos-sdk/version.Name=sifchain -X github.com/cosmos/cosmos-sdk/version.ServerName=sifnoded -X github.com/cosmos/cosmos-sdk/version.ClientName=sifnoded -X github.com/cosmos/cosmos-sdk/version.Version=${{ steps.version.outputs.version }} -X github.com/cosmos/cosmos-sdk/version.Commit=${{ steps.hash.outputs.sha_short }}" | ||
sha256sum: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters