forked from connamara/quickfixn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated build, test, and release scripts.
- Loading branch information
Jos Hickson
committed
Jan 23, 2018
1 parent
ef8b56a
commit 49066c6
Showing
27 changed files
with
101 additions
and
9,909 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
echo off | ||
@echo off | ||
set PORT=%1 | ||
echo [DEFAULT] > cfg\at.cfg | ||
REM FIXME: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
TestResults/ | ||
store/ | ||
log/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
echo off | ||
|
||
set TARGET=%1 | ||
set CONFIGURATION=%2 | ||
set NET_VERSION=%3 | ||
set TOOLS_VERSION=%4 | ||
set CONFIGURATION=%1 | ||
|
||
if "%1" == "" set TARGET=Rebuild | ||
if "%2" == "" set CONFIGURATION=Release | ||
if "%3" == "" set NET_VERSION=v4.5.2 | ||
if "%4" == "" set TOOLS_VERSION=14.0 | ||
if "%1" == "" set CONFIGURATION=Release | ||
|
||
set BUILD_CMD=MSBuild.exe QuickFIXn.sln /t:%TARGET% /p:Configuration=%CONFIGURATION%;TargetFrameworkVersion=%NET_VERSION% /tv:%TOOLS_VERSION% | ||
set BUILD_CMD=dotnet build -c %CONFIGURATION% | ||
echo Build command: %BUILD_CMD% | ||
%BUILD_CMD% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
#!/bin/sh | ||
|
||
TARGET=$1 | ||
CONFIGURATION=$2 | ||
NET_VERSION=$3 | ||
CONFIGURATION=$1 | ||
|
||
[ -z $TARGET ] && TARGET=Rebuild | ||
[ -z $CONFIGURATION ] && CONFIGURATION=Release | ||
[ -z $NET_VERSION ] && NET_VERSION=v4.5.2 | ||
|
||
BUILD_CMD="xbuild QuickFIXn.sln /t:${TARGET} /p:Configuration=${CONFIGURATION};TargetFrameworkVersion=${NET_VERSION}" | ||
BUILD_CMD="dotnet build -c ${CONFIGURATION}" | ||
echo "Build command: $BUILD_CMD" | ||
exec $BUILD_CMD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.