Skip to content

Commit

Permalink
Configure CI (no. 147)
Browse files Browse the repository at this point in the history
  • Loading branch information
cafour committed Jun 10, 2021
1 parent 4649533 commit 25ddf01
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ci/linux/run.sh
Expand Up @@ -6,15 +6,15 @@

PROGRAM='DotVVM Linux CI'
SHORTOPTS='-h'
LONGOPTS='help,no-all,no-clean,no-npm-build,no-sln-restore,no-sln-build,no-unit-tests,no-js-tests,no-ui-tests'
LONGOPTS='help,no-all,clean,no-npm-build,no-sln-restore,no-sln-build,no-unit-tests,no-js-tests,no-ui-tests'
TEMP=$(getopt -o "$SHORTOPS" -l "$LONGOPTS" -n "$PROGRAM" -- "$@")
if [ $? -ne 0 ]; then
exit 1
fi
eval set -- "$TEMP"
unset TEMP

CLEAN=1
CLEAN=0
NPM_BUILD=1
SLN_RESTORE=1
SLN_BUILD=1
Expand All @@ -29,7 +29,7 @@ while true; do
Usage: $0 [options]
Options:
-h, --help Show this help.
--no-clean Don't git clean the repo.
--clean Clean the with 'git clean' first.
--no-npm-build Don't build the JS part of the Framework.
--no-sln-restore Don't restore NuGet packages.
--no-sln-build Don't build ~/ci/linux/Linux.sln.
Expand All @@ -40,8 +40,8 @@ EOF
shift
continue
;;
'--no-clean')
CLEAN=0
'--clean')
CLEAN=1
shift
continue
;;
Expand Down

0 comments on commit 25ddf01

Please sign in to comment.