forked from codeplaysoftware/portBLAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_docker.sh
executable file
·30 lines (25 loc) · 1.08 KB
/
run_docker.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# This script runs the portBLAS tests using the provided Dockerfile.
# The intention is to provide a seamless alternative to .travis.yml, so that
# developers can locally test changes in a (somewhat) platform-agnostic manner
# without the usual delay that travis testing entails.
#
# By default, this script will compile the portBLAS with open source DPCPP
# implementation. Other compilers can be enabled by changing the `CXX_COMPILER`
# and `CC_COMPILER` environment variables.
# Git "slug" are also equally configurable. By default the git repository
# cloned is codeplay's portBLAS master.
export IMPL=DPCPP
export CXX_COMPILER="/tmp/dpcpp/bin/clang++"
export CC_COMPILER="/tmp/dpcpp/bin/clang"
export GIT_SLUG="codeplaysoftware/portBLAS"
export GIT_BRANCH="master"
export COMMAND="build-test"
docker build --build-arg c_compiler=${CC_COMPILER} \
--build-arg cxx_compiler=${CXX_COMPILER} \
--build-arg git_branch=${GIT_BRANCH} \
--build-arg git_slug=${GIT_SLUG} \
--build-arg impl=${IMPL} \
--build-arg command=${COMMAND} \
-t portblas .
docker run portblas