mirror of
https://github.com/status-im/evmc.git
synced 2025-02-24 00:48:09 +00:00
commit
f38ac75f82
@ -20,6 +20,7 @@ BreakBeforeBraces: Custom
|
|||||||
BreakBeforeTernaryOperators: false
|
BreakBeforeTernaryOperators: false
|
||||||
ColumnLimit: 100
|
ColumnLimit: 100
|
||||||
ConstructorInitializerIndentWidth: 2
|
ConstructorInitializerIndentWidth: 2
|
||||||
|
IncludeBlocks: Preserve
|
||||||
IncludeCategories:
|
IncludeCategories:
|
||||||
|
|
||||||
# Local includes "":
|
# Local includes "":
|
||||||
|
17
circle.yml
17
circle.yml
@ -56,7 +56,8 @@ commands:
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
executor: linux
|
docker:
|
||||||
|
- image: ethereum/cpp-build-env:12-lint
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run:
|
- run:
|
||||||
@ -68,7 +69,7 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: "Run codespell"
|
name: "Run codespell"
|
||||||
command: |
|
command: |
|
||||||
codespell --quiet-level=4 --ignore-words=./.codespell-whitelist
|
codespell --quiet-level=4 --ignore-words=./.codespell-whitelist --skip=.git
|
||||||
- run:
|
- run:
|
||||||
name: "Check bumpversion"
|
name: "Check bumpversion"
|
||||||
command: |
|
command: |
|
||||||
@ -126,18 +127,14 @@ jobs:
|
|||||||
- build_and_test
|
- build_and_test
|
||||||
|
|
||||||
build-gcc6:
|
build-gcc6:
|
||||||
executor: linux
|
docker:
|
||||||
environment:
|
- image: ethereum/cpp-build-env:12-gcc-6
|
||||||
CC: gcc-6
|
|
||||||
CXX: g++-6
|
|
||||||
steps:
|
steps:
|
||||||
- build_and_test
|
- build_and_test
|
||||||
|
|
||||||
build-clang38:
|
build-clang38:
|
||||||
executor: linux
|
docker:
|
||||||
environment:
|
- image: ethereum/cpp-build-env:12-clang-3.8
|
||||||
CC: clang-3.8
|
|
||||||
CXX: clang++-3.8
|
|
||||||
steps:
|
steps:
|
||||||
- build_and_test
|
- build_and_test
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
///
|
///
|
||||||
/// This VM does not do anything useful except for showing
|
/// This VM does not do anything useful except for showing
|
||||||
/// how EVMC VM API should be implemented.
|
/// how EVMC VM API should be implemented.
|
||||||
/// The inplementation is done in C only, but could be done in C++ in very
|
/// The implementation is done in C only, but could be done in C++ in very
|
||||||
/// similar way.
|
/// similar way.
|
||||||
|
|
||||||
#include "example_vm.h"
|
#include "example_vm.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user