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 BreakBeforeTernaryOperators: false
ColumnLimit: 100 ColumnLimit: 100
ConstructorInitializerIndentWidth: 2 ConstructorInitializerIndentWidth: 2
IncludeBlocks: Preserve
IncludeCategories: IncludeCategories:
# Local includes "": # Local includes "":

View File

@ -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

View File

@ -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"