Auto-deploy to DockerHub
This commit is contained in:
parent
83fb251d73
commit
570796ca28
18
.travis.yml
18
.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)
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
FROM busybox
|
||||
|
||||
MAINTAINER "DLang Community <community@dlang.io>"
|
||||
|
||||
COPY bin/dscanner /dscanner
|
||||
RUN chmod +x /dscanner
|
||||
|
||||
WORKDIR /src
|
||||
|
||||
ENTRYPOINT [ "/dscanner" ]
|
20
README.md
20
README.md
|
@ -1,4 +1,9 @@
|
|||
# D-Scanner [](https://travis-ci.org/dlang-community/D-Scanner/)
|
||||
# D-Scanner
|
||||
|
||||
[](https://travis-ci.org/dlang-community/D-Scanner/)
|
||||
[](http://code.dlang.org/packages/dscanner)
|
||||
[](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.
|
||||
|
|
Loading…
Reference in New Issue