Revert "Windows: update dobuild.cmd to run the configure/make"
authorJens Axboe <axboe@kernel.dk>
Thu, 5 Nov 2020 22:33:00 +0000 (15:33 -0700)
committerJens Axboe <axboe@kernel.dk>
Thu, 5 Nov 2020 22:33:00 +0000 (15:33 -0700)
This reverts commit 38c2f9384db8dbd93f59d965d70ab0d3a53343fa.

It's causing issues for CI, revert it for now.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
os/windows/_domake.sh [deleted file]
os/windows/dobuild.cmd

diff --git a/os/windows/_domake.sh b/os/windows/_domake.sh
deleted file mode 100755 (executable)
index 05625ff..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-cd "$2"
-cd ../..
-if [ -e "fio.exe" ]; then
-  make clean
-fi
-
-if [ "$1" = "x86" ]; then
-  ./configure --disable-native --build-32bit-win
-else
-  ./configure --disable-native
-fi
-
-make -j
index ea79dd03b4eb62ae04834641c0465f78ce5f1d62..08df3e876da6d3f761ba5ca5d335428bbbd2be71 100644 (file)
@@ -1,18 +1,5 @@
 @echo off\r
 setlocal enabledelayedexpansion\r
-\r
-if "%1"=="x86" set FIO_ARCH=x86\r
-if "%1"=="x64" set FIO_ARCH=x64\r
-\r
-if not defined FIO_ARCH (\r
-  echo Error: must specify the architecture.\r
-  echo Usage: dobuild x86\r
-  echo Usage: dobuild x64\r
-  goto end\r
-)\r
-\r
-C:\Cygwin64\bin\bash -l %cd%/_domake.sh %FIO_ARCH% %cd%\r
-\r
 set /a counter=1\r
 for /f "tokens=3" %%i in (..\..\FIO-VERSION-FILE) do (\r
  if "!counter!"=="1" set FIO_VERSION=%%i\r
@@ -29,6 +16,16 @@ if not defined FIO_VERSION_NUMBERS (
   goto end\r
 )\r
 \r
+if "%1"=="x86" set FIO_ARCH=x86\r
+if "%1"=="x64" set FIO_ARCH=x64\r
+\r
+if not defined FIO_ARCH (\r
+  echo Error: must specify the architecture.\r
+  echo Usage: dobuild x86\r
+  echo Usage: dobuild x64\r
+  goto end\r
+)\r
+\r
 if defined SIGN_FIO (\r
   signtool sign /n "%SIGNING_CN%" /t http://timestamp.digicert.com ..\..\fio.exe\r
   signtool sign /as /n "%SIGNING_CN%" /tr http://timestamp.digicert.com /td sha256 /fd sha256 ..\..\fio.exe\r