forked from 0xPolygonHermez/zkevm-node
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of github.com:okx/xlayer-node into niven/nubit
- Loading branch information
Showing
57 changed files
with
1,302 additions
and
331 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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: image-builder | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: 'Branch to build' | ||
required: false | ||
tag: | ||
description: 'Tag to build' | ||
required: false | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
id: checkout | ||
with: | ||
ref: ${{ github.event.inputs.branch || github.event.inputs.tag }} | ||
|
||
- name: check param | ||
run: | | ||
branch=${{ github.event.inputs.branch }} | ||
tag=${{ github.event.inputs.tag }} | ||
if [ -z "$branch" ] && [ -z "$tag" ]; then | ||
echo "Both branch and tag are empty." | ||
exit 1 | ||
elif [ -n "$branch" ] && [ -n "$tag" ]; then | ||
echo "Both branch and tag are provided. Please provide only one." | ||
exit 1 | ||
else | ||
echo "Correct! One of branch or tag is provided." | ||
fi | ||
- name: Get current date | ||
id: date | ||
run: echo "DATE=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV | ||
|
||
- name: Get commit hash | ||
id: commit | ||
run: echo "HASH=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | ||
|
||
- name: Generate image tag | ||
id: tag | ||
run: | | ||
BRANCH_TAG=$(echo "${{ github.event.inputs.branch || github.event.inputs.tag }}" | sed 's/\//_/g') | ||
IMAGE_TAG="${BRANCH_TAG}_${DATE}_${HASH}" | ||
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build and Push Docker image | ||
run: | | ||
docker build -t "xlayerdev/xlayer-node:${{ env.IMAGE_TAG }}" . | ||
docker push "xlayerdev/xlayer-node:${{ env.IMAGE_TAG }}" |
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 |
---|---|---|
|
@@ -14,17 +14,17 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21 | ||
|
||
- name: Get packr | ||
run: go install github.com/gobuffalo/packr/v2/[email protected] | ||
|
||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v4 | ||
uses: goreleaser/goreleaser-action@v6 | ||
with: | ||
version: latest | ||
version: '~> v2' | ||
args: release --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN_RELEASE }} | ||
|
@@ -45,16 +45,6 @@ jobs: | |
mv cardona/config/environments/cardona/example.env cardona | ||
sed -i -e "s/image: zkevm-node/image: hermeznetwork\/zkevm-node:$GIT_TAG_NAME/g" cardona/docker-compose.yml | ||
zip -r cardona.zip cardona | ||
# TESTNET | ||
mkdir -p testnet/config/environments/testnet | ||
mkdir -p testnet/db/scripts | ||
cp config/environments/testnet/* testnet/config/environments/testnet | ||
cp docker-compose.yml testnet | ||
sed -i 's/\/config\/environments\/${ZKEVM_NETWORK}/\/config\/environments\/testnet/g' testnet/docker-compose.yml | ||
cp db/scripts/init_prover_db.sql testnet/db/scripts | ||
mv testnet/config/environments/testnet/example.env testnet | ||
sed -i -e "s/image: zkevm-node/image: hermeznetwork\/zkevm-node:$GIT_TAG_NAME/g" testnet/docker-compose.yml | ||
zip -r testnet.zip testnet | ||
# MAINNET | ||
mkdir -p mainnet/config/environments/mainnet | ||
mkdir -p mainnet/db/scripts | ||
|
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# .goreleaser.yaml | ||
version: 2 | ||
|
||
builds: | ||
- main: ./cmd/ | ||
goos: | ||
|
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
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
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
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
Oops, something went wrong.