Skip to content

Commit

Permalink
Merge pull request #230 from ethereum/ci_windows_no_avx
Browse files Browse the repository at this point in the history
ci: Drop -DNATIVE=ON for Windows builds
  • Loading branch information
chfast authored Apr 1, 2020
2 parents 67e4d32 + 629845f commit 2e0c05a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2e0c05a

Please sign in to comment.