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 #46 from aurora-is-near/sync-30-04
Sync with origin
- Loading branch information
Showing
756 changed files
with
43,474 additions
and
15,242 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 |
---|---|---|
@@ -1,20 +1,13 @@ | ||
:0: Unknown function 'Elixir.ExUnit.Callbacks':'__merge__'/3 | ||
:0: Unknown function 'Elixir.ExUnit.CaseTemplate':'__proxy__'/2 | ||
:0: Unknown type 'Elixir.Map':t/0 | ||
:0: Unknown type 'Elixir.Hash':t/0 | ||
:0: Unknown type 'Elixir.Address':t/0 | ||
lib/ethereum_jsonrpc/rolling_window.ex:171 | ||
lib/explorer/smart_contract/solidity/publisher_worker.ex:1 | ||
lib/explorer/smart_contract/vyper/publisher_worker.ex:1 | ||
lib/explorer/smart_contract/solidity/publisher_worker.ex:8 | ||
lib/explorer/smart_contract/vyper/publisher_worker.ex:8 | ||
lib/block_scout_web/router.ex:1 | ||
lib/block_scout_web/schema/types.ex:31 | ||
lib/phoenix/router.ex:324 | ||
lib/phoenix/router.ex:402 | ||
lib/explorer/smart_contract/reader.ex:435 | ||
lib/explorer/exchange_rates/source.ex:139 | ||
lib/explorer/exchange_rates/source.ex:142 | ||
lib/block_scout_web/cldr.ex:1 | ||
lib/block_scout_web/views/api/v2/transaction_view.ex:431 | ||
lib/block_scout_web/views/api/v2/transaction_view.ex:472 | ||
lib/explorer/chain/transaction.ex:170 | ||
lib/explorer/chain/transaction.ex:171 |
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,23 @@ | ||
name: 'Setup repo and calc short SHA commit' | ||
description: 'Setup repo: checkout/login/extract metadata, Set up Docker Buildx and calculate short SHA commit' | ||
inputs: | ||
docker-username: | ||
description: 'Docker username' | ||
required: true | ||
docker-password: | ||
description: 'Docker password' | ||
required: true | ||
runs: | ||
using: "composite" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup repo | ||
uses: ./.github/actions/setup-repo | ||
with: | ||
docker-username: ${{ inputs.docker-username }} | ||
docker-password: ${{ inputs.docker-password }} | ||
|
||
- name: Add SHORT_SHA env property with commit short sha | ||
shell: bash | ||
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV |
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,29 @@ | ||
name: 'Setup repo' | ||
description: 'Setup repo: checkout/login/extract metadata, Set up Docker Buildx' | ||
inputs: | ||
docker-username: | ||
description: 'Docker username' | ||
required: true | ||
docker-password: | ||
description: 'Docker password' | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ inputs.docker-username }} | ||
password: ${{ inputs.docker-password }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: blockscout/blockscout |
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.