Commit fc8ff61f authored by Paul's avatar Paul
Browse files

Ignore bzip2 for now

parent 8c9d1856
...@@ -57,6 +57,7 @@ RUN ln -s $PREFIX /opt/rocm/hip ...@@ -57,6 +57,7 @@ RUN ln -s $PREFIX /opt/rocm/hip
RUN ln -s $PREFIX /opt/rocm/hcc RUN ln -s $PREFIX /opt/rocm/hcc
# Install dependencies # Install dependencies
RUN cget -p $PREFIX ignore bzip2
ADD dev-requirements.txt /dev-requirements.txt ADD dev-requirements.txt /dev-requirements.txt
ADD requirements.txt /requirements.txt ADD requirements.txt /requirements.txt
RUN cget -p $PREFIX install -f /dev-requirements.txt RUN cget -p $PREFIX install -f /dev-requirements.txt
......
...@@ -19,13 +19,13 @@ def rocmtestnode(variant, name, body) { ...@@ -19,13 +19,13 @@ def rocmtestnode(variant, name, body) {
} }
stage("image ${variant}") { stage("image ${variant}") {
try { try {
docker.build("${image}", '--add-host bzip2.org:46.235.226.80 --add-host www.bzip2.org:46.235.226.80 .') docker.build("${image}", '.')
} catch(Exception ex) { } catch(Exception ex) {
docker.build("${image}", '--no-cache --add-host bzip2.org:46.235.226.80 --add-host www.bzip2.org:46.235.226.80 .') docker.build("${image}", '--no-cache .')
} }
} }
withDockerContainer(image: image, args: '--device=/dev/kfd --device=/dev/dri --group-add video --cap-add SYS_PTRACE --add-host="bzip2.org:46.235.226.80" --add-host="www.bzip2.org:46.235.226.80"') { withDockerContainer(image: image, args: '--device=/dev/kfd --device=/dev/dri --group-add video --cap-add SYS_PTRACE') {
timeout(time: 1, unit: 'HOURS') { timeout(time: 1, unit: 'HOURS') {
body(cmake_build) body(cmake_build)
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment