This commit is contained in:
Eddy Ashton 2023-01-11 15:45:19 +00:00 коммит произвёл GitHub
Родитель e283b926e4
Коммит 118a9355d0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 1 добавлений и 35 удалений

Просмотреть файл

@ -1,34 +0,0 @@
version: 2
jobs:
build:
docker:
- image: dockbuild/ubuntu1804-gcc7:latest
steps:
- checkout
- run:
name: Make build directory
command: mkdir build
- run:
name: CMake
command: 'cmake ..'
working_directory: build
- run:
name: Make
command: make VERBOSE=1
working_directory: build
- run:
name: Quick test
command: ctest -VV
working_directory: build
- run:
name: Full tests
command: 'time ./eevm_tests -ns -d'
working_directory: build
environment:
TEST_DIR: '../3rdparty/test_cases/'

Просмотреть файл

@ -2,7 +2,7 @@
Enclave EVM (eEVM) is an open-source, standalone, embeddable, C++ implementation of the Ethereum Virtual Machine. It was originally built to run within a [TEE](https://en.wikipedia.org/wiki/Trusted_execution_environment) (ie, SGX enclave) on top of the [Open Enclave SDK](https://openenclave.io/sdk/), for use with Microsoft's [Confidential Consortium Framework](https://github.com/Microsoft/CCF). Enclave EVM (eEVM) is an open-source, standalone, embeddable, C++ implementation of the Ethereum Virtual Machine. It was originally built to run within a [TEE](https://en.wikipedia.org/wiki/Trusted_execution_environment) (ie, SGX enclave) on top of the [Open Enclave SDK](https://openenclave.io/sdk/), for use with Microsoft's [Confidential Consortium Framework](https://github.com/Microsoft/CCF).
[![CircleCI](https://circleci.com/gh/microsoft/eEVM.svg?style=svg&circle-token=b2b713983d1fe737e7c12e30dc935beb7323e80e)](https://circleci.com/gh/microsoft/eEVM) [![eEVM GitHub Actions CI](https://github.com/microsoft/eEVM/actions/workflows/build_and_test.yml/badge.svg)](https://github.com/microsoft/eEVM/actions/workflows/build_and_test.yml)
## Description ## Description