forked from blockscout/blockscout
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #48 from aurora-is-near/sync-17-06
Sync with origin
- Loading branch information
Showing
430 changed files
with
24,828 additions
and
5,000 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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
|
||
# Check if a domain is provided as an argument | ||
if [ -z "$1" ]; then | ||
echo "Usage: $0 <domain>" | ||
exit 1 | ||
fi | ||
|
||
DOMAIN=$1 | ||
SSH_USER=$2 | ||
SSH_KEY=$3 | ||
|
||
# Resolve A records | ||
IP_LIST=$(dig +short A $DOMAIN) | ||
if [ -z "$IP_LIST" ]; then | ||
echo "No IPs found for domain $DOMAIN" | ||
exit 1 | ||
fi | ||
|
||
MIN_LA=1000000 | ||
BEST_BUILDER="" | ||
|
||
for IP in $IP_LIST; do | ||
# Check if the host is reachable via SSH | ||
ssh -o StrictHostKeychecking=no -o ConnectTimeout=5 -o BatchMode=yes -i $SSH_KEY $SSH_USER@$IP "exit" 2>/dev/null | ||
if [ $? -eq 0 ]; then | ||
# Get the load average | ||
LA=$(ssh -o StrictHostKeychecking=no -i $SSH_KEY $SSH_USER@$IP "uptime | awk -F'load average:' '{ print \$2 }' | cut -d, -f1" 2>/dev/null) | ||
if [ $? -eq 0 ]; then | ||
# Compare and find the minimum load average | ||
LA=$(echo $LA | xargs) # Trim whitespace | ||
if (( $(echo "$LA < $MIN_LA" | bc -l) )); then | ||
MIN_LA=$LA | ||
BEST_BUILDER=$IP | ||
fi | ||
fi | ||
fi | ||
done | ||
|
||
if [ -n "$BEST_BUILDER" ]; then | ||
echo "$BEST_BUILDER" | tr -d '[:space:]' | ||
else | ||
echo "No reachable hosts found." | ||
fi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
name: Pre-release for Arbitrum | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
number: | ||
type: number | ||
required: true | ||
|
||
env: | ||
OTP_VERSION: ${{ vars.OTP_VERSION }} | ||
ELIXIR_VERSION: ${{ vars.ELIXIR_VERSION }} | ||
|
||
jobs: | ||
push_to_registry: | ||
name: Push Docker image to Docker Hub | ||
runs-on: ubuntu-latest | ||
env: | ||
RELEASE_VERSION: ${{ vars.RELEASE_VERSION }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup repo | ||
uses: ./.github/actions/setup-repo | ||
id: setup | ||
with: | ||
docker-username: ${{ secrets.DOCKER_USERNAME }} | ||
docker-password: ${{ secrets.DOCKER_PASSWORD }} | ||
docker-remote-multi-platform: true | ||
docker-arm-host: ${{ secrets.ARM_RUNNER_HOSTNAME }} | ||
docker-arm-host-key: ${{ secrets.ARM_RUNNER_KEY }} | ||
|
||
- name: Build and push Docker image for Arbitrum (indexer + API) | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: blockscout/blockscout-arbitrum:${{ env.RELEASE_VERSION }}-alpha.${{ inputs.number }} | ||
labels: ${{ steps.setup.outputs.docker-labels }} | ||
platforms: | | ||
linux/amd64 | ||
linux/arm64/v8 | ||
build-args: | | ||
DISABLE_WEBAPP=false | ||
API_V1_READ_METHODS_DISABLED=false | ||
API_V1_WRITE_METHODS_DISABLED=false | ||
CACHE_EXCHANGE_RATES_PERIOD= | ||
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED= | ||
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL= | ||
ADMIN_PANEL_ENABLED=false | ||
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-alpha.${{ inputs.number }} | ||
RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
CHAIN_TYPE=arbitrum | ||
- name: Build and push Docker image for Arbitrum (indexer) | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: blockscout/blockscout-arbitrum:${{ env.RELEASE_VERSION }}-alpha.${{ inputs.number }}-indexer | ||
labels: ${{ steps.setup.outputs.docker-labels }} | ||
platforms: | | ||
linux/amd64 | ||
linux/arm64/v8 | ||
build-args: | | ||
DISABLE_API=true | ||
DISABLE_WEBAPP=true | ||
CACHE_EXCHANGE_RATES_PERIOD= | ||
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED= | ||
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL= | ||
ADMIN_PANEL_ENABLED=false | ||
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-alpha.${{ inputs.number }} | ||
RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
CHAIN_TYPE=arbitrum | ||
- name: Build and push Docker image for Arbitrum (API) | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: blockscout/blockscout-arbitrum:${{ env.RELEASE_VERSION }}-alpha.${{ inputs.number }}-api | ||
labels: ${{ steps.setup.outputs.docker-labels }} | ||
platforms: | | ||
linux/amd64 | ||
linux/arm64/v8 | ||
build-args: | | ||
DISABLE_INDEXER=true | ||
DISABLE_WEBAPP=true | ||
CACHE_EXCHANGE_RATES_PERIOD= | ||
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED= | ||
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL= | ||
ADMIN_PANEL_ENABLED=false | ||
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-alpha.${{ inputs.number }} | ||
RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
CHAIN_TYPE=arbitrum |
Oops, something went wrong.