Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
83c8be5
Start combining dependencies
JoshOrndorff Oct 9, 2020
fca83a6
wip
JoshOrndorff Oct 9, 2020
a7eb7dd
wip
JoshOrndorff Oct 10, 2020
605ac8d
rename runtimes so I stop getting them confused
JoshOrndorff Oct 10, 2020
d957fad
genericize description
JoshOrndorff Oct 10, 2020
e86c9be
Merge branch 'master' into joshy-unify-runtime
JoshOrndorff Oct 10, 2020
d7524c1
minor tweaks to make standalone runtime more similar to parachain run…
JoshOrndorff Oct 10, 2020
2799965
more minor tweaks
JoshOrndorff Oct 10, 2020
21c9e86
initial pass complete parachain runtime compiles
JoshOrndorff Oct 10, 2020
c7e3f03
checkpoint; both compile
JoshOrndorff Oct 10, 2020
0e72ecf
fix parachain node build
JoshOrndorff Oct 10, 2020
d569ac9
re-wire standalone node to use unified runtime. Doesn't compile becau…
JoshOrndorff Oct 10, 2020
9195e6a
Both nodes compile
JoshOrndorff Oct 10, 2020
596509f
Mark parachain dependencies as optional
JoshOrndorff Oct 10, 2020
b2c9093
Prune unused runtime
JoshOrndorff Oct 10, 2020
ae8d1d6
Couple last renames
JoshOrndorff Oct 10, 2020
ca2856c
Enable CheckTxVersion
JoshOrndorff Oct 10, 2020
64ad75b
clean up slot duration for standalone node
JoshOrndorff Oct 10, 2020
7472757
clean up FindAuthor
JoshOrndorff Oct 10, 2020
073a33e
remove `combined` directory
JoshOrndorff Oct 10, 2020
9af7d43
remove parachain feature; it is default.
JoshOrndorff Oct 12, 2020
adb4076
Clean comment
JoshOrndorff Oct 12, 2020
a33bfda
Merge branch 'master' into joshy-unify-runtime
JoshOrndorff Oct 12, 2020
76d234a
Move feature specific code to modules
tgmichel Oct 13, 2020
0cca07a
Add copyright to runtime modules
tgmichel Oct 13, 2020
8c40f3b
correct comments
JoshOrndorff Oct 13, 2020
eeec184
Move version to modules
JoshOrndorff Oct 13, 2020
359f3f7
master.into()
JoshOrndorff Oct 19, 2020
03f3d77
Separate workspace for standalone node.
JoshOrndorff Oct 19, 2020
c48517a
attempt CI adjustments
JoshOrndorff Oct 19, 2020
03915c4
remove submodule following https://stackoverflow.com/a/36593218/4184410
JoshOrndorff Oct 19, 2020
56086e7
replace with regular cargo deps
JoshOrndorff Oct 19, 2020
6c6784f
Oops, wrong repo :facepalm:
JoshOrndorff Oct 19, 2020
1c65ccd
remove gitmodules file
JoshOrndorff Oct 19, 2020
4ccf8df
update ci
JoshOrndorff Oct 19, 2020
32874dd
update readme
JoshOrndorff Oct 19, 2020
587e2de
fix command syntax
JoshOrndorff Oct 19, 2020
87be205
Remove cd ../.. to see if build still passes
JoshOrndorff Oct 20, 2020
f6f919e
tabs to spaces
JoshOrndorff Oct 20, 2020
6f2647d
update path: I wonder why we're using the debug build?
JoshOrndorff Oct 20, 2020
5767b72
Merge branch 'master' into joshy-devendor-frontier
JoshOrndorff Oct 20, 2020
06f0a21
switch dependency to branch
JoshOrndorff Oct 20, 2020
2baf4a6
master.into()
JoshOrndorff Oct 20, 2020
d1945ab
Merge branch 'joshy-devendor-frontier' into joshy-substrate-master
JoshOrndorff Oct 20, 2020
eefaf61
de-alias packages for easier updating
JoshOrndorff Oct 20, 2020
f5070f7
start hacking
JoshOrndorff Oct 20, 2020
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
20 changes: 11 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ jobs:
key: ${{ runner.OS }}-build-${{ env.WASM_BUILD_TOOLCHAIN }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.OS }}-build--${{ env.WASM_BUILD_TOOLCHAIN }}
-
name: Submodules
run: git submodule update --init --recursive
-
uses: actions-rs/toolchain@v1
with:
Expand All @@ -81,24 +78,29 @@ jobs:
run: |
echo "::set-output name=rustc::$(rustc --version)"
-
name: Build
name: Build Parachain Node
run: cargo build --release --verbose --all
-
name: Build Standalone Node
run: |
cd node/standalone
cargo build --release --verbose --all
-
name: Run tests
run: cargo test --release --verbose --all
-
name: Typescript tests
name: Typescript tests (against standalone node)
run: |
cd tests
npm install
BINARY_PATH='../target/release/moonbase-standalone' npm run test;
-
BINARY_PATH='..node/standalone/target/release/moonbase-standalone' npm run test;
-
name: Save parachain binary
run: |
mkdir -p build/alphanet
mkdir -p build/standalone
cp target/release/moonbase-alphanet build/alphanet/moonbase-alphanet;
cp target/release/moonbase-standalone build/standalone/moonbase-standalone;
cp node/standalone/target/release/moonbase-standalone build/standalone/moonbase-standalone;
-
name: Upload moonbase-alphanet node
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -271,7 +273,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push parachain
name: Build and push standalone node
id: docker_build
uses: docker/build-push-action@v2
with:
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

Loading