From 570796ca288dfe30b6903ac0bbdee067cab3f98f Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Fri, 29 Jun 2018 17:16:29 +0200 Subject: [PATCH] Auto-deploy to DockerHub --- .travis.yml | 18 ++++++++++++++++++ Dockerfile | 10 ++++++++++ README.md | 20 +++++++++++++++++++- 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 Dockerfile diff --git a/.travis.yml b/.travis.yml index a2cabba..1bc3b3d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -62,6 +62,24 @@ jobs: on: repo: dlang-community/D-Scanner tags: true + - stage: dockerhub-stable + if: tag IS present + d: ldc + os: linux + script: + - echo "Deploying to DockerHub..." && ./release.sh + - LATEST_TAG="$(git describe --abbrev=0 --tags)" + - docker build -t "dlangcommunity/dscanner:${LATEST_TAG} ." + - if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" ; fi + - if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then docker push "dlangcommunity/dscanner:${LATEST_TAG}" ; fi + - stage: dockerhub-latest + d: ldc + os: linux + script: + - echo "Deploying to DockerHub..." && ./release.sh + - docker build -t dlangcommunity/dscanner:latest . + - if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" ; fi + - if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then docker push dlangcommunity/dscanner:latest ; fi stages: - name: test if: type = pull_request or (type = push and branch = master) diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5a453d5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM busybox + +MAINTAINER "DLang Community " + +COPY bin/dscanner /dscanner +RUN chmod +x /dscanner + +WORKDIR /src + +ENTRYPOINT [ "/dscanner" ] diff --git a/README.md b/README.md index 140a56f..14516e8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ -# D-Scanner [![CI status](https://travis-ci.org/dlang-community/D-Scanner.svg?branch=master)](https://travis-ci.org/dlang-community/D-Scanner/) +# D-Scanner + +[![CI status](https://travis-ci.org/dlang-community/D-Scanner.svg?branch=master)](https://travis-ci.org/dlang-community/D-Scanner/) +[![Latest version](https://img.shields.io/dub/v/dscanner.svg)](http://code.dlang.org/packages/dscanner) +[![License](https://img.shields.io/dub/l/dscanner.svg)](http://code.dlang.org/packages/dscanner) + D-Scanner is a tool for analyzing D source code ### Building and installing @@ -23,6 +28,14 @@ Under Windows run the tests with `build.bat test`. > dub fetch dscanner && dub run dscanner ``` +## Installing with Docker + +With Docker no installation is required: + +```sh +docker run --rm -v $(pwd):/src dlangcommunity/dscanner +``` + # Usage The following examples assume that we are analyzing a simple file called helloworld.d @@ -53,6 +66,11 @@ to resolve the locations of the imported modules. $ dscanner --imports helloworld.d -I ~/.dvm/compilers/dmd-2.071.1-b2/src/phobos/ -I ~/.dvm/compilers/dmd-2.071.1-b2/src/druntime/src/ /home/brian/.dvm/compilers/dmd-2.071.1-b2/src/phobos/std/stdio.d +Remember to pass map the import locations when you use Docker: + + docker run --rm -v $(pwd):/src -v /usr/include/dlang/dmd:/d dlangcommunity/dscanner --imports helloworld.d -I/d + /d/std/stdio.d + The "--recursiveImports" option is similar to "--imports", except that it lists imports of imports (and so on) recursively. The recursive import option requires import paths to be specified in order to work correctly.