forked from aave/aave-v3-core
-
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 #1 from neonlabsorg/adapt-for-neon-network
added waiting for tx and skipped part of tests
- Loading branch information
Showing
49 changed files
with
842 additions
and
1,732 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,30 @@ | ||
name: Update docker image | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
env: | ||
IMAGE_NAME: neonlabsorg/aave-v3-core | ||
jobs: | ||
dockerize: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Define tag | ||
id: define-env | ||
run: | | ||
if [[ "${{ github.ref_name }}" == 'main' ]]; then | ||
tag='latest' | ||
else | ||
tag='${{ github.sha }}' | ||
fi | ||
echo "tag=${tag}" | ||
echo "tag=${tag}" >> $GITHUB_OUTPUT | ||
- name: Build image | ||
run: | | ||
docker build -t $IMAGE_NAME:${{ steps.define-env.outputs.tag }} . | ||
- name: Push image | ||
run: | | ||
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | ||
echo "Push image $IMAGE_NAME:${{ steps.define-env.outputs.tag }} to Docker registry" | ||
docker push --all-tags $IMAGE_NAME |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
test_list = "test-suites/__setup.spec.ts test-suites/aave-oracle.spec.ts test-suites/aave-protocol-data-provider.spec.ts test-suites/acl-manager.spec.ts test-suites/addresses-provider-registry.spec.ts test-suites/atoken-delegation-aware.spec.ts test-suites/atoken-edge.spec.ts test-suites/atoken-modifiers.spec.ts test-suites/atoken-permit.spec.ts test-suites/atoken-transfer.spec.ts test-suites/bridge-logic.spec.ts test-suites/configurator-borrow-cap.spec.ts test-suites/configurator-edge.spec.ts test-suites/configurator-modifiers.spec.ts test-suites/configurator-rate-strategy.spec.ts test-suites/configurator-supply-cap.spec.ts test-suites/configurator.spec.ts test-suites/debt-token-delegation-permit.spec.ts test-suites/emode.spec.ts test-suites/emptyrun.coverage.spec.ts test-suites/interest-overflow.spec.ts test-suites/isolation-mode.spec.ts test-suites/liquidation-emode-interest.spec.ts test-suites/liquidation-emode.spec.ts test-suites/liquidation-underlying.spec.ts test-suites/liquidation-with-fee.spec.ts test-suites/liquidity-indexes.spec.ts test-suites/ltv-validation.spec.ts test-suites/mint-to-treasury.spec.ts test-suites/pausable-pool.spec.ts test-suites/pausable-reserve.spec.ts test-suites/pool-addresses-provider.spec.ts test-suites/pool-authorized-flashloan.spec.ts test-suites/pool-drop-reserve.spec.ts test-suites/pool-edge.spec.ts test-suites/pool-get-reserve-address-by-id.spec.ts test-suites/pool-normal-flashloan.spec.ts test-suites/pool-simple-flashloan.spec.ts test-suites/rate-strategy.spec.ts test-suites/rescue-tokens.spec.ts test-suites/reserve-configuration.spec.ts test-suites/scenario.spec.ts test-suites/siloed-borrowing.spec.ts test-suites/stable-debt-token-events.spec.ts test-suites/stable-debt-token.spec.ts test-suites/variable-debt-token.spec.ts test-suites/wadraymath.spec.ts" | ||
|
||
npx hardhat test $test_list --network neonlabs |
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.