From: Bart Van Assche Date: Tue, 5 Jun 2018 08:27:23 +0000 (+0200) Subject: Rename appveyor.yml into .appveyor.yml X-Git-Tag: fio-3.8~52^2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=0c0b66650c11891ee3733c65027639ca06ccc056 Rename appveyor.yml into .appveyor.yml Make the appveyor.yml file less visible because it is not a fio source code file. Signed-off-by: Bart Van Assche --- diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 00000000..ca8b2ab1 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,30 @@ +clone_depth: 1 # NB: this stops FIO-VERSION-GEN making tag based versions + +environment: + CYG_MIRROR: http://cygwin.mirror.constant.com + CYG_ROOT: C:\cygwin64 + MAKEFLAGS: -j 2 + matrix: + - platform: x64 + PACKAGE_ARCH: x86_64 + CONFIGURE_OPTIONS: + - platform: x86 + PACKAGE_ARCH: i686 + CONFIGURE_OPTIONS: --build-32bit-win --target-win-ver=xp + +install: + - '%CYG_ROOT%\setup-x86_64.exe --quiet-mode --no-shortcuts --only-site --site "%CYG_MIRROR%" --packages "mingw64-%PACKAGE_ARCH%-zlib" > NUL' + - SET PATH=%CYG_ROOT%\bin;%PATH% # NB: Changed env variables persist to later sections + +build_script: + - 'bash.exe -lc "cd \"${APPVEYOR_BUILD_FOLDER}\" && ./configure --disable-native --extra-cflags=\"-Werror\" ${CONFIGURE_OPTIONS} && make.exe' + +after_build: + - cd os\windows && dobuild.cmd %PLATFORM% + +test_script: + - 'bash.exe -lc "cd \"${APPVEYOR_BUILD_FOLDER}\" && file.exe fio.exe && make.exe test' + +artifacts: + - path: os\windows\*.msi + name: msi diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index ca8b2ab1..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,30 +0,0 @@ -clone_depth: 1 # NB: this stops FIO-VERSION-GEN making tag based versions - -environment: - CYG_MIRROR: http://cygwin.mirror.constant.com - CYG_ROOT: C:\cygwin64 - MAKEFLAGS: -j 2 - matrix: - - platform: x64 - PACKAGE_ARCH: x86_64 - CONFIGURE_OPTIONS: - - platform: x86 - PACKAGE_ARCH: i686 - CONFIGURE_OPTIONS: --build-32bit-win --target-win-ver=xp - -install: - - '%CYG_ROOT%\setup-x86_64.exe --quiet-mode --no-shortcuts --only-site --site "%CYG_MIRROR%" --packages "mingw64-%PACKAGE_ARCH%-zlib" > NUL' - - SET PATH=%CYG_ROOT%\bin;%PATH% # NB: Changed env variables persist to later sections - -build_script: - - 'bash.exe -lc "cd \"${APPVEYOR_BUILD_FOLDER}\" && ./configure --disable-native --extra-cflags=\"-Werror\" ${CONFIGURE_OPTIONS} && make.exe' - -after_build: - - cd os\windows && dobuild.cmd %PLATFORM% - -test_script: - - 'bash.exe -lc "cd \"${APPVEYOR_BUILD_FOLDER}\" && file.exe fio.exe && make.exe test' - -artifacts: - - path: os\windows\*.msi - name: msi