The following changes since commit dbd39049ca473de7dc031cd9bf3efe992834323f: Revert "configure: Drop default CONFIG_LITTLE_ENDIAN for Cygwin" (2017-02-19 17:57:43 -0700) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 349cdc89ffebb8f3a9cf3ff5be6a9934b94f1b05: appveyor: add CI building of the Windows version of fio (2017-02-20 07:19:20 +0000) ---------------------------------------------------------------- Sitsofe Wheeler (1): appveyor: add CI building of the Windows version of fio appveyor.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 appveyor.yml --- Diff of recent changes: diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..7543393 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,27 @@ +clone_depth: 50 +environment: + MAKEFLAGS: -j 2 + matrix: + - platform: x86_64 + BUILD_ARCH: x64 + CYG_ROOT: C:\cygwin64 + CONFIGURE_OPTIONS: + - platform: x86 + BUILD_ARCH: x86 + CYG_ROOT: C:\cygwin + CONFIGURE_OPTIONS: --build-32bit-win + +build_script: + - SET PATH=%CYG_ROOT%\bin;%PATH% + - 'bash.exe -lc "cd \"${APPVEYOR_BUILD_FOLDER}\" && ./configure ${CONFIGURE_OPTIONS} && make.exe' + +after_build: + - cd os\windows && dobuild.cmd %BUILD_ARCH% + +test_script: + - SET PATH=%CYG_ROOT%\bin;%PATH% + - 'bash.exe -lc "cd \"${APPVEYOR_BUILD_FOLDER}\" && file.exe fio.exe && make.exe test' + +artifacts: + - path: os\windows\*.msi + name: msi -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html