diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2019-11-26 10:11:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-26 10:11:29 -0700 |
commit | 7a81c37bdef5151bd4503af46ef3ccb5ef65ae04 (patch) | |
tree | 4f7336fe7e794317ff9a2c0d461de1b54c5d2e2d /.travis.yml | |
parent | 1291ca3410bfb39ef8b1fb5e38ab39070af35fdc (diff) | |
download | spack-7a81c37bdef5151bd4503af46ef3ccb5ef65ae04.tar.gz spack-7a81c37bdef5151bd4503af46ef3ccb5ef65ae04.tar.bz2 spack-7a81c37bdef5151bd4503af46ef3ccb5ef65ae04.tar.xz spack-7a81c37bdef5151bd4503af46ef3ccb5ef65ae04.zip |
Package Index: Build in Dockerhub (#13810)
* Package Index: Build in Dockerhub
Prepare to build the package index service, packages.spack.io,
on Dockerhub.
Local build (in spack root dir):
```
docker build -t spack/packages.spack.io:latest -f share/spack/docker/package-index/Dockerfile .
```
Local test:
```
docker run -p 8080:80 spack/packages.spack.io:latest
```
* Travis-CI: Remove Docker
Remove leftover docker stages from Travis-CI.
* Simplify Split Call
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml index 691ee49695..55d1f13c54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -102,20 +102,11 @@ jobs: os: linux language: python env: [ TEST_SUITE=build, 'SPEC=mpich' ] - - python: '3.8' - stage: 'docker build' - os: linux - language: python - env: TEST_SUITE=docker - allow_failures: - - env: TEST_SUITE=docker stages: - 'style checks' - 'unit tests + documentation' - 'build tests' - - name: 'docker build' - if: type = push AND branch IN (develop, master) #============================================================================= @@ -199,9 +190,6 @@ before_script: #============================================================================= # Building #============================================================================= -services: - - docker - script: - share/spack/qa/run-$TEST_SUITE-tests |