@cosmetic custom docker image for circleci

pull/1104/merge
Leonardo Galli 6 years ago
parent ef86c83799
commit d1189e62c5

@ -0,0 +1,5 @@
FROM mono:4.8
RUN apt-get update && apt-get install -y git ssh tar gzip ca-certificates
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -E -
RUN apt-get install -y nodejs npm

@ -3,7 +3,7 @@ version: 2
jobs:
build:
docker:
- image: mono:4.8
- image: gallileo/radarr-cci-primary:4.8
steps:
- checkout
- run: git submodule update --init --recursive
@ -13,3 +13,5 @@ jobs:
- run:
name: Testing
command: ./test.sh Linux Unit
- store_test_results:
path: _tests/reports/

@ -11,7 +11,7 @@ fi
NUNIT="$TEST_DIR/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe"
NUNIT_COMMAND="$NUNIT"
NUNIT_PARAMS="--teamcity"
NUNIT_PARAMS="--result=$TEST_DIR/reports/results.xml"
if [ "$PLATFORM" = "Windows" ]; then
WHERE="$WHERE && cat != LINUX"

Loading…
Cancel
Save