diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 657fa14..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -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/' diff --git a/README.md b/README.md index 9876ce4..f2c4d8b 100644 --- a/README.md +++ b/README.md @@ -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). -[![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