Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ Running new build of /home/andrey/github/tiledarray on andrey.tiledarray.build

This builds targets `all check` on current Git branch in a docker container named `${USER}.$(basename $PWD).build`

To use a specific Ubuntu image tag, set environment variable `VALEEVGROUP_UBUNTU_TAG` to one of the [available values](https://hub.docker.com/r/valeevgroup/ubuntu/tags), e.g. `18:04`.
6 changes: 3 additions & 3 deletions ci/docker-run-ci
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash

# build project via docker run, eg
# usage: docker-run-ci <build-dir> [ VAR=VALUE ... ] [ target ... ]
# example: ./ci/docker-run-ci ./build-dir MPQC_BUILD_DEPENDENCIES_FROM_SOURCE=OFF ENABLE_CUDA=ON all check
# usage: docker-run-ci [ VAR=VALUE ... ] [ target ... ]
# example: ./ci/docker-run-ci TA_PYTHON=OFF ENABLE_CUDA=ON all check

project=$(basename $PWD)
image=valeevgroup/ubuntu
image=valeevgroup/ubuntu:${VALEEVGROUP_UBUNTU_TAG:-latest}
name=$USER.${project}.build
project_source_dir=$PWD

Expand Down