-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into eclesio/sync-strategy
- Loading branch information
Showing
51 changed files
with
1,619 additions
and
895 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 |
---|---|---|
|
@@ -40,7 +40,7 @@ jobs: | |
- name: Up to date Go proto generated | ||
run: | | ||
go install google.golang.org/protobuf/cmd/[email protected] && \ | ||
PROTOC_VERSION=21.10 && \ | ||
PROTOC_VERSION=24.4 && \ | ||
curl -sL --output protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip" && \ | ||
sudo unzip protoc.zip -d /usr/local && \ | ||
rm protoc.zip && \ | ||
|
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Dispatch workflow to deploy Gossamer nodes | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
commit: | ||
description: 'commit' | ||
required: true | ||
nodeType: | ||
description: 'Node type' | ||
required: true | ||
default: 'genesis' | ||
type: choice | ||
options: | ||
- snapshot | ||
- genesis | ||
cluster: | ||
description: 'Cluster' | ||
default: 'shared-gossamer' | ||
type: choice | ||
options: | ||
- shared-gossamer | ||
- shared-gossamer-2 | ||
required: true | ||
chain: | ||
description: 'Chain' | ||
required: true | ||
default: 'westend' | ||
type: choice | ||
options: | ||
- paseo | ||
- westend | ||
|
||
jobs: | ||
dispatch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get Token | ||
id: get_workflow_token | ||
uses: peter-murray/workflow-application-token-action@v3 | ||
with: | ||
application_id: ${{ vars.APPLICATION_ID }} | ||
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }} | ||
|
||
- name: Dispatch Repository Event for ${{ github.event.inputs.chain }} | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ steps.get_workflow_token.outputs.token }} | ||
repository: Chainsafe/infrastructure-general | ||
event-type: deploy-gossamer-${{ github.event.inputs.nodeType }} | ||
client-payload: | | ||
{ | ||
"ref": "refs/heads/main", | ||
"inputs": { | ||
"commit": "${{ github.event.inputs.commit }}", | ||
"chain": "${{ github.event.inputs.chain }}", | ||
"cluster": "${{ github.event.inputs.cluster }}" | ||
} | ||
} |
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,4 +1,4 @@ | ||
FROM golang:1.22 | ||
FROM golang:1.23 | ||
|
||
ARG chain="polkadot" | ||
ARG basepath="~/.local/share/gossamer" | ||
|
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,4 +1,4 @@ | ||
FROM golang:1.22 | ||
FROM golang:1.23 | ||
|
||
ARG chain="polkadot" | ||
ARG basepath="~/.local/share/gossamer" | ||
|
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
Oops, something went wrong.