Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
80d32fd
Wip inmense refactor - checkpoint
tgmichel May 14, 2021
e43232a
Wip continue - it checks with-moonbase-runtime
tgmichel May 14, 2021
ba81f0c
Checks with-moobeam-runtime
tgmichel May 14, 2021
2d2b806
Clear warnings
tgmichel May 15, 2021
f374023
Add copyrights
tgmichel May 15, 2021
e692c6f
Add moonriver, checks, wip warnings
tgmichel May 15, 2021
b4db26f
Moonriver warnings
tgmichel May 16, 2021
f1e722b
fmt
tgmichel May 16, 2021
342d5ca
Remove runtime features
tgmichel May 17, 2021
f58dca1
Remove `cfg-if`
tgmichel May 17, 2021
a9307dc
fmt
tgmichel May 17, 2021
2629f4c
fill in load_spec function
JoshOrndorff May 17, 2021
2c63bec
staking-test-spec
tgmichel May 18, 2021
1cca839
Dedup chain_spec::Extensions
tgmichel May 18, 2021
4aa1aa2
Runtime spec and impl names
tgmichel May 18, 2021
8a86432
Dedup spec account generator
tgmichel May 18, 2021
18044e8
Move AccountIndex, DigestItem to primitives
tgmichel May 18, 2021
cc6700e
core-primitives
tgmichel May 18, 2021
ae2845c
gate staking spec
tgmichel May 18, 2021
b7a183c
Missing copyright
tgmichel May 18, 2021
04144e8
labels
tgmichel May 18, 2021
8563584
remove unused `cli` feature
tgmichel May 18, 2021
f9fd116
transaction converter + clear todos
tgmichel May 18, 2021
6fd79dc
remove feature const
tgmichel May 18, 2021
e02f8a9
fmt
tgmichel May 18, 2021
3a85ed3
add supertrait comment
tgmichel May 18, 2021
f72e39e
fix checker
tgmichel May 18, 2021
9430140
Fix dev node
tgmichel May 18, 2021
ac59347
Fix tests dep
tgmichel May 18, 2021
83425ba
WIP moonriver tests
tgmichel May 18, 2021
3931dd5
Restore moonriver
tgmichel May 18, 2021
493bd66
Fix tests
tgmichel May 18, 2021
7ba77f3
Add moonshadow
tgmichel May 18, 2021
1eb74ef
add new network names to type bundle
joelamouche May 18, 2021
6cd67a8
Merge branch 'master' into tgm-runtimes
May 18, 2021
9c74bcd
Updates to include master branch
May 19, 2021
cc7543f
Fixes specs/scripts for new runtime
May 19, 2021
471954b
Restore author provider for dev
May 19, 2021
1122d62
Proper alice for dev
May 19, 2021
3e642e1
Formatting
May 19, 2021
3f28f54
update tests README
tgmichel May 19, 2021
4e8d56e
doc for `TransactionConverters`
tgmichel May 19, 2021
90f8490
dev service collator flag comment
tgmichel May 19, 2021
fcd172e
handle all `TransactionConvertes` variants
tgmichel May 19, 2021
78e10dd
fmt
tgmichel May 19, 2021
d7a58f5
Adds support for commit trigger NO-CACHE
May 19, 2021
130aa40
Better cache check on the CI workflow
May 19, 2021
c745af0
Changing ci to use SCCACHE_RECACHE
May 19, 2021
b4e6817
Adds support in ci for NO-CACHE
May 19, 2021
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
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
env:
CARGO_SCCACHE_VERSION: 0.2.14-alpha.0-parity
RUSTFLAGS: "-C opt-level=3"
SCCACHE_RECACHE: ${{ contains(github.event.head_commit.message, 'SCCACHE_RECACHE') }}
# MOONBEAM_LOG: info
# DEBUG: "test*"
outputs:
Expand All @@ -98,10 +99,12 @@ jobs:
shell: bash
- name: Start sccache
run: |
chmod +x ${{ runner.tool_cache }}/cargo-sccache/bin/sccache
${{ runner.tool_cache }}/cargo-sccache/bin/sccache --start-server
${{ runner.tool_cache }}/cargo-sccache/bin/sccache -s
echo "RUSTC_WRAPPER=${{ runner.tool_cache }}/cargo-sccache/bin/sccache" >> $GITHUB_ENV
if [ "${{ contains(github.event.head_commit.message, 'NO-CACHE') }}" != "false" ]; then
chmod +x ${{ runner.tool_cache }}/cargo-sccache/bin/sccache
${{ runner.tool_cache }}/cargo-sccache/bin/sccache --start-server
${{ runner.tool_cache }}/cargo-sccache/bin/sccache -s
echo "RUSTC_WRAPPER=${{ runner.tool_cache }}/cargo-sccache/bin/sccache" >> $GITHUB_ENV
fi
- id: get-rust-versions
run: |
echo "::set-output name=rustc::$(rustc --version)"
Expand Down
Loading