-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat/BurnToZeroAddressPool
- Loading branch information
Showing
292 changed files
with
3,069 additions
and
2,838 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,7 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Add panic recovery to wsrpc mercury client | ||
|
||
- Should help to make nodes running wsrpc v0.8.2 more stable #bugfix |
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,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#internal change gethwrapper to allow for foundry based gethwrapper generation |
26 changes: 0 additions & 26 deletions
26
.github/actions/detect-solidity-foundry-version/action.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,13 +89,28 @@ jobs: | |
goarch: arm64 | ||
dist_name: linux_arm64_v8.0 | ||
steps: | ||
- name: Checkout repository | ||
- name: Checkout chainlink repository | ||
uses: actions/[email protected] | ||
with: | ||
persist-credentials: false | ||
ref: ${{ env.CHECKOUT_REF }} | ||
fetch-depth: 0 | ||
|
||
- name: Setup Github Token | ||
id: token | ||
uses: smartcontractkit/.github/actions/setup-github-token@ef78fa97bf3c77de6563db1175422703e9e6674f # [email protected] | ||
with: | ||
aws-role-arn: ${{ secrets.AWS_OIDC_GLOBAL_READ_ONLY_TOKEN_ISSUER_ROLE_ARN }} | ||
aws-lambda-url: ${{ secrets.AWS_INFRA_RELENG_TOKEN_ISSUER_LAMBDA_URL }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
|
||
- name: Checkout capabilities repository | ||
uses: actions/[email protected] | ||
with: | ||
repository: smartcontractkit/capabilities | ||
token: ${{ steps.token.outputs.access-token }} | ||
path: capabilities | ||
|
||
- name: Configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | ||
with: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.define-matrix.outputs.matrix }} | ||
foundry-version: ${{ steps.extract-foundry-version.outputs.foundry-version }} | ||
steps: | ||
- name: Define test matrix | ||
id: define-matrix | ||
|
@@ -51,12 +50,6 @@ jobs: | |
with: | ||
persist-credentials: false | ||
|
||
- name: Extract Foundry version | ||
id: extract-foundry-version | ||
uses: ./.github/actions/detect-solidity-foundry-version | ||
with: | ||
working-directory: contracts | ||
|
||
changes: | ||
name: Detect changes | ||
runs-on: ubuntu-latest | ||
|
@@ -178,9 +171,7 @@ jobs: | |
${{ contains(fromJson(needs.changes.outputs.all_changes), matrix.product.name) | ||
|| contains(fromJson(needs.changes.outputs.all_changes), 'shared') | ||
|| needs.changes.outputs.non_src_changes == 'true' }} | ||
uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0 | ||
with: | ||
version: ${{ needs.define-matrix.outputs.foundry-version }} | ||
uses: ./.github/actions/install-solidity-foundry | ||
|
||
# If Solc version is not set in foundry.toml, then what `forge build` does is that it lazily-installs required solc versions | ||
# using SVM. This is done in parallel, but SVM has a bug and is not thread-safe, which sometimes leads to `Text file busy` error. | ||
|
@@ -347,9 +338,7 @@ jobs: | |
uses: ./.github/actions/setup-nodejs | ||
|
||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0 | ||
with: | ||
version: ${{ needs.define-matrix.outputs.foundry-version }} | ||
uses: ./.github/actions/install-solidity-foundry | ||
|
||
- name: Set up Python | ||
uses: actions/[email protected] | ||
|
@@ -626,9 +615,7 @@ jobs: | |
|
||
- name: Install Foundry | ||
if: ${{ (contains(fromJson(needs.changes.outputs.all_changes), matrix.product.name) || needs.changes.outputs.non_src_changes == 'true') && matrix.product.setup.run-forge-fmt }} | ||
uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0 | ||
with: | ||
version: ${{ needs.define-matrix.outputs.foundry-version }} | ||
uses: ./.github/actions/install-solidity-foundry | ||
|
||
- name: Run Forge fmt | ||
if: ${{ (contains(fromJson(needs.changes.outputs.all_changes), matrix.product.name) || needs.changes.outputs.non_src_changes == 'true') && matrix.product.setup.run-forge-fmt }} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,3 +115,4 @@ vendor/* | |
|
||
*.wasm | ||
contracts/lcov.info | ||
/cache |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.