diff --git a/CHANGELOG.md b/CHANGELOG.md index 9825fb036c..59bc545c92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## [0.4.1] — unreleased + +### Fixed + +- The release binaries for Windows are now built without AVX instruction set + enabled. That was never intended and is consistent with binaries for other + operating systems. + [#230](https://github.com/ethereum/evmone/pull/230) + ## [0.4.0] — 2019-12-09 ### Fixed diff --git a/appveyor.yml b/appveyor.yml index f9ca5d2fef..13a998a774 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,13 +26,17 @@ install: before_build: - call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\Common7\Tools\vsdevcmd" -arch=amd64 - - cmake -S . -B build -DEVMONE_TESTING=ON -DNATIVE=ON -Wno-dev -G "%GENERATOR%" -DCMAKE_INSTALL_PREFIX=C:\install + - cmake -S . -B build -DEVMONE_TESTING=ON -Wno-dev -G "%GENERATOR%" -DCMAKE_INSTALL_PREFIX=C:\install build_script: - cmake --build build --target package - mkdir package - mv build/evmone-* package +artifacts: + - path: package/* + name: package + test_script: - cd build && ctest -j4 --output-on-failure --schedule-random