-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feat/solana-ccm-checker' into fe…
…at/solana-call-length * origin/feat/solana-ccm-checker: (27 commits) Minor changes chore: dont run upgrade chore: split message and cfParameters chore: remove logging chore: set minimum to 10 bytes chore: add logs feat: solana add two more nonces (#5089) chore: run upgrade test chore: update Solana programs to 0.6 and update initialization (#5078) chore: rename DerivedAta to PdaAndBump (#5074) fix: revert storage version chore: fix test and actually push encoding change chore: update bytes limits and use same encoding as solana SDK chore: fix bouncer bug fix: 3-node localnet in CI 🥽 (#5085) feat: exclude validators with negative rep from auction (#5062) Revert "chore: re-enable rust cache in CI 🦀💰 (#5072)" (#5077) chore: fix imports (#5075) chore: bump `main` to `1.6.0` 👆 (#5081) chore: re-enable rust cache in CI 🦀💰 (#5072) ... # Conflicts: # state-chain/chains/src/ccm_checker.rs # state-chain/chains/src/sol/instruction_builder.rs
- Loading branch information
Showing
74 changed files
with
1,628 additions
and
441 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 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,49 @@ | ||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
jobs: | ||
upload: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout 🛒 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
|
||
- name: Download Artifacts 📥 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | ||
with: | ||
name: chainflip-backend-bin | ||
path: chainflip-backend-bin | ||
|
||
- name: Download M2 binaries 📥 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | ||
with: | ||
name: chainflip-backend-bin-mac-m2 | ||
path: chainflip-backend-bin-mac-m2 | ||
|
||
- name: Set Version 🔦 | ||
id: version | ||
shell: bash | ||
run: | | ||
chmod +x chainflip-backend-bin/chainflip-node | ||
VERSION=$(./ci/scripts/extract_version.sh "$(./chainflip-backend-bin/chainflip-node --version)" full) | ||
echo "Version: $VERSION" | ||
echo "url_friendly_version=$(echo $VERSION | tr . _)" >> $GITHUB_OUTPUT | ||
- name: Move shared library files 📂 | ||
run: | | ||
mkdir -p /tmp/chainflip-engine-shared-libs/ | ||
mv chainflip-backend-bin/libchainflip_engine_v${{ steps.version.outputs.url_friendly_version }}.so /tmp/chainflip-engine-shared-libs/ | ||
mv chainflip-backend-bin-mac-m2/libchainflip_engine_v${{ steps.version.outputs.url_friendly_version }}.dylib /tmp/chainflip-engine-shared-libs/ | ||
- name: Configure AWS credentials using OIDC 🪪 | ||
uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a | ||
with: | ||
aws-region: eu-central-1 | ||
role-to-assume: arn:aws:iam::962042992619:role/chainflip-github-bot | ||
|
||
- name: Upload engine shared libraries S3 🚀 | ||
run: | | ||
aws s3 cp /tmp/chainflip-engine-shared-libs/ s3://repo.chainflip.io/lib/${{ steps.version.outputs.url_friendly_version }}/ --recursive |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "chainflip-api" | ||
version = "1.5.0" | ||
version = "1.6.0" | ||
edition = "2021" | ||
|
||
[lints] | ||
|
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.