Merge pull request #431 from ethereum/ci

ci: Docker images upgrade
This commit is contained in:
Paweł Bylica 2019-09-25 20:33:43 +02:00 committed by GitHub
commit f38ac75f82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 11 deletions

View File

@ -20,6 +20,7 @@ BreakBeforeBraces: Custom
BreakBeforeTernaryOperators: false
ColumnLimit: 100
ConstructorInitializerIndentWidth: 2
IncludeBlocks: Preserve
IncludeCategories:
# Local includes "":

View File

@ -56,7 +56,8 @@ commands:
jobs:
lint:
executor: linux
docker:
- image: ethereum/cpp-build-env:12-lint
steps:
- checkout
- run:
@ -68,7 +69,7 @@ jobs:
- run:
name: "Run codespell"
command: |
codespell --quiet-level=4 --ignore-words=./.codespell-whitelist
codespell --quiet-level=4 --ignore-words=./.codespell-whitelist --skip=.git
- run:
name: "Check bumpversion"
command: |
@ -126,18 +127,14 @@ jobs:
- build_and_test
build-gcc6:
executor: linux
environment:
CC: gcc-6
CXX: g++-6
docker:
- image: ethereum/cpp-build-env:12-gcc-6
steps:
- build_and_test
build-clang38:
executor: linux
environment:
CC: clang-3.8
CXX: clang++-3.8
docker:
- image: ethereum/cpp-build-env:12-clang-3.8
steps:
- build_and_test

View File

@ -8,7 +8,7 @@
///
/// This VM does not do anything useful except for showing
/// 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.
#include "example_vm.h"