-
Notifications
You must be signed in to change notification settings - Fork 955
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fraccaman/refactor-transfer-code' (#3109)
* fraccaman/refactor-transfer-code: changelog: add #3109 fix benches fmt, clippy fix mint and burn prelude functions ci: fix antithesis workflow ci: added triggerable antithesis workflow ci: downgrade sccache to 0.7.7
- Loading branch information
Showing
12 changed files
with
106 additions
and
115 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/improvements/3109-refactor-transfer-code.md
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,2 @@ | ||
- Use token functions from the token crate inside the tx_prelude. | ||
([\#3109](https://github.com/anoma/namada/pull/3109)) |
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
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,33 @@ | ||
name: Triggerable Antithesis workflow | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
namada_docker_tag: | ||
description: 'The docker tag of the namada docker images' | ||
required: true | ||
type: string | ||
scenario_tester_docker_tag: | ||
description: 'The docker tag of the scenario tester image' | ||
required: true | ||
type: string | ||
workload_type: | ||
type: choice | ||
description: The type of workload to use (namada__pr__customer 3h, namada__nightly__customer 8h) | ||
options: | ||
- namada__pr__customer | ||
- namada__nightly__customer | ||
|
||
jobs: | ||
antithesis: | ||
runs-on: [ubuntu-latest] | ||
|
||
steps: | ||
- uses: antithesishq/antithesis-trigger-action@v0.2 | ||
with: | ||
notebook_name: ${{ github.event.inputs.workload_type }} | ||
tenant: heliax | ||
username: ${{ secrets.ANTITHESIS_USER_NAME }} | ||
password: ${{ secrets.ANTITHESIS_PASSWORD }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
images: namada-config:${{ github.event.inputs.namada_docker_tag }},namada-genesis:${{ github.event.inputs.namada_docker_tag }},namada:${{ github.event.inputs.namada_docker_tag }},namada:${{ github.event.inputs.namada_docker_tag }}-inst,namada-scenario-tester:${{ github.event.inputs.scenario_tester_docker_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
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
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