Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Gossamer testing runtime w/ Session & Staking pallets #3

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
800e1fa
Gossamer testing runtime
danforbes Apr 14, 2022
33a034d
Merge tag 'polkadot-v0.9.19' into dfo/gssmr-test
danforbes Apr 21, 2022
64bd461
Add CODEOWNERS
danforbes Apr 29, 2022
2c24715
Merge tag 'polkadot-v0.9.20' into dfo/gssmr-test
danforbes May 6, 2022
fd45152
Local network should have 3 nodes
danforbes May 16, 2022
6e49f20
Try to fix GitHub build
danforbes May 16, 2022
58ad927
Merge tag 'polkadot-v0.9.24' into dfo/gssmr-test
danforbes Jun 17, 2022
6da3c24
Add Session & Staking pallets
danforbes May 8, 2022
caa82f3
Fallback and max weight/length
danforbes May 26, 2022
838d2a2
Update to v0.9.24
danforbes Jun 17, 2022
d2e6ccc
Merge tag 'polkadot-v0.9.25' into dfo/gssmr-test
danforbes Jul 12, 2022
46fd424
Merge tag `polkadot-v0.9.25` into dfo/gssmr-test-staking
danforbes Jul 12, 2022
ac2d3e6
Merge tag 'polkadot-v0.9.26' into dfo/gssmr-test
danforbes Jul 17, 2022
afbe177
Update to polkadot-v0.9.26
danforbes Jul 17, 2022
55c097e
session change trigger fix
Aug 3, 2022
0ce9a46
Auto-Update node-template from polkadot-v0.9.27
devops-parity Aug 4, 2022
205f631
Update docker-compose.yml
alvicsam Aug 4, 2022
9d7162d
Merge remote-tracking branch 'origin/autoupdate_polkadot-v0.9.27_2022…
danforbes Aug 4, 2022
307ba41
Add Session & Staking pallets
danforbes Aug 4, 2022
c45132e
session change trigger fix
Aug 3, 2022
4e639d3
WIP
danforbes Aug 10, 2022
ab35e4c
Merge branch 'dfo/gssmr-test-staking' into talhadaar/session-change-fix
danforbes Aug 10, 2022
4506acd
Update Cargo.lock
danforbes Aug 10, 2022
06ae2e1
Merge tag 'polkadot-v0.9.28' into dfo/gssmr-test
danforbes Sep 8, 2022
4bac85c
Merge tag 'polkadot-v0.9.28' into dfo/gssmr-test-staking
danforbes Sep 8, 2022
82cca53
Merge tag 'polkadot-v0.9.29' into dfo/gssmr-test
danforbes Oct 4, 2022
e949ca6
Merge branch 'dfo/gssmr-test' into dfo/gssmr-test-staking
danforbes Oct 4, 2022
68c43b1
Merge branch 'dfo/gssmr-test' into dfo/gssmr-test-staking
danforbes Nov 17, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .devcontainer/devcontainer.json

This file was deleted.

16 changes: 0 additions & 16 deletions .editorconfig

This file was deleted.

7 changes: 0 additions & 7 deletions .envrc

This file was deleted.

4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# CODEOWNERS: https://help.github.com/articles/about-codeowners/

# Primary repo maintainers
* @edwardmack @timwu20 @EclesioMeloJunior @jimjbrettj @kishansagathiya @qdm12 @danforbes
12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

59 changes: 59 additions & 0 deletions .github/workflows/build-specs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build Chain Specs

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ gssmr-test ]
pull_request:
branches: [ gssmr-test ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-specs:
# The type of runner that the job will run on
runs-on: ubuntu-20.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Set-Up
run: |
sudo apt update
sudo apt upgrade
sudo apt install -y git clang curl libssl-dev llvm libudev-dev protobuf-compiler

- name: Install Rustup
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source ~/.cargo/env
rustup default stable
rustup update nightly
rustup update stable
rustup target add wasm32-unknown-unknown --toolchain nightly

- name: Build
run: |
cargo build

- name: Build Specs
run: |
./target/debug/gssmr-test-node build-spec --dev --disable-default-bootnode > dev-spec.json &&
./target/debug/gssmr-test-node build-spec --dev --disable-default-bootnode --raw > dev-spec-raw.json &&
./target/debug/gssmr-test-node build-spec --disable-default-bootnode > spec.json &&
./target/debug/gssmr-test-node build-spec --disable-default-bootnode --raw > spec-raw.json

- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
dev-spec.json
dev-spec-raw.json
spec.json
spec-raw.json
44 changes: 0 additions & 44 deletions .github/workflows/check.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .vscode/tasks.json

This file was deleted.

Loading