Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .docker/subzero-dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# because they're too often out of date,
# preventing them from being used to build subzero/Polkadot.

# FROM phusion/baseimage:jammy-1.0.1 as baseimage
FROM phusion/baseimage:focal-1.2.0 as baseimage
ENV DEBIAN_FRONTEND=noninteractive


RUN apt-get update && \
apt-get dist-upgrade -y -o Dpkg::Options::="--force-confold" && \
apt-get install -y cmake pkg-config libssl-dev git clang
Expand Down
38 changes: 34 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/alphaville/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alphaville"
version = "3.2.62"
version = "3.2.67"
authors = ["ZERO <play@zero.io>"]
description = "build video games and beyond"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion bin/alphaville/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alphaville-runtime"
version = "3.2.62"
version = "3.2.67"
authors = ["ZERO <play@zero.io>"]
edition = "2021"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion bin/alphaville/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to 0. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 62,
spec_version: 67,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
2 changes: 1 addition & 1 deletion bin/subzero-dev/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subzero-dev-node"
version = "3.2.66"
version = "3.2.67"
authors = ["ZERO <play@zero.io>"]
description = "A substrate node for video games and beyond."
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion bin/subzero-dev/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subzero-dev-runtime"
version = "3.2.66"
version = "3.2.67"
authors = ["ZERO <play@zero.io>"]
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
homepage = "https://zero.io"
Expand Down
2 changes: 1 addition & 1 deletion bin/subzero-dev/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("subzero"),
impl_name: create_runtime_str!("dev"),
authoring_version: 75,
spec_version: 66,
spec_version: 67,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# build alphaville docker

# alphaville docker
alphaville-docker:
docker build -t playzero/alphaville:local -f .docker/alphaville.Dockerfile .

alphaville-run:
docker run \
-p 9933:9933 -p 9944:9944 -p 30333:30333 \
playzero/alphaville:local /usr/local/bin/alphaville \
--dev --name alphaville --ws-external \
--rpc-external --rpc-cors all --rpc-methods unsafe
# build subzero-dev docker
dev-docker-build:
docker build -t playzero/subzero:dev -f .docker/subzero-dev.Dockerfile .

#
#
#

reset:
cargo clean
Expand Down