From 249eb4dbdfee0f93fe7f6489a271ef1d31c37bf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 18 Jun 2019 16:24:39 +0200 Subject: [PATCH] Adds missing build.rs --- cumulus/test/runtime/build.rs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 cumulus/test/runtime/build.rs diff --git a/cumulus/test/runtime/build.rs b/cumulus/test/runtime/build.rs new file mode 100644 index 0000000000..6882aa2fea --- /dev/null +++ b/cumulus/test/runtime/build.rs @@ -0,0 +1,27 @@ +// Copyright 2019 Parity Technologies (UK) Ltd. +// This file is part of Substrate. + +// Substrate is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Substrate is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Substrate. If not, see . + +use wasm_builder_runner::{build_current_project, WasmBuilderSource}; + +fn main() { + build_current_project( + "wasm_binary.rs", + WasmBuilderSource::Git { + repo: "https://github.com/paritytech/substrate", + rev: "c7fa536d85df5d6a0fc5cdc3f82b6e5a1a2db640", + } + ); +} \ No newline at end of file