Skip to content

Commit 2e0c05a

Browse files
authored
Merge pull request #230 from ethereum/ci_windows_no_avx
ci: Drop -DNATIVE=ON for Windows builds
2 parents 67e4d32 + 629845f commit 2e0c05a

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

88

9+
## [0.4.1] — unreleased
10+
11+
### Fixed
12+
13+
- The release binaries for Windows are now built without AVX instruction set
14+
enabled. That was never intended and is consistent with binaries for other
15+
operating systems.
16+
[#230](https://github.com/ethereum/evmone/pull/230)
17+
918
## [0.4.0] — 2019-12-09
1019

1120
### Fixed

appveyor.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,17 @@ install:
2626

2727
before_build:
2828
- call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\Common7\Tools\vsdevcmd" -arch=amd64
29-
- cmake -S . -B build -DEVMONE_TESTING=ON -DNATIVE=ON -Wno-dev -G "%GENERATOR%" -DCMAKE_INSTALL_PREFIX=C:\install
29+
- cmake -S . -B build -DEVMONE_TESTING=ON -Wno-dev -G "%GENERATOR%" -DCMAKE_INSTALL_PREFIX=C:\install
3030

3131
build_script:
3232
- cmake --build build --target package
3333
- mkdir package
3434
- mv build/evmone-* package
3535

36+
artifacts:
37+
- path: package/*
38+
name: package
39+
3640
test_script:
3741
- cd build && ctest -j4 --output-on-failure --schedule-random
3842

0 commit comments

Comments
 (0)