@cosmetic custom docker image for circleci

pull/2/head
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: jobs:
build: build:
docker: docker:
- image: mono:4.8 - image: gallileo/radarr-cci-primary:4.8
steps: steps:
- checkout - checkout
- run: git submodule update --init --recursive - run: git submodule update --init --recursive
@ -13,3 +13,5 @@ jobs:
- run: - run:
name: Testing name: Testing
command: ./test.sh Linux Unit 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="$TEST_DIR/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe"
NUNIT_COMMAND="$NUNIT" NUNIT_COMMAND="$NUNIT"
NUNIT_PARAMS="--teamcity" NUNIT_PARAMS="--result=$TEST_DIR/reports/results.xml"
if [ "$PLATFORM" = "Windows" ]; then if [ "$PLATFORM" = "Windows" ]; then
WHERE="$WHERE && cat != LINUX" WHERE="$WHERE && cat != LINUX"

Loading…
Cancel
Save