info
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pymor[full] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from collections import defaultdict | |
| from junitparser import JUnitXml | |
| import os | |
| from tabulate import tabulate | |
| def read_files(filenames): | |
| """expect filenames of the form test_results_GIT-REV.xml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git+https://github.com/pymor/pymor.git@fix_memory_cache | |
| jupytext |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM nmiyake/go:go-darwin-linux-1.11-t134 as builder | |
| # copying these here allows to cache the download | |
| COPY godelw /go/src/github.com/palantir/bulldozer/ | |
| COPY godel/config /go/src/github.com/palantir/bulldozer/godel/config/ | |
| WORKDIR /go/src/github.com/palantir/bulldozer | |
| RUN ./godelw download || true | |
| COPY . /go/src/github.com/palantir/bulldozer |
I hereby claim:
- I am renefritze on github.
- I am renefritze (https://keybase.io/renefritze) on keybase.
- I have a public key ASB1BvnE7PjuSnIYnOatAOWcfuNV4IiiGrW7PKsh5w59KQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """ Recursively walk the current working directory looking for broken | |
| symlinks. If any broken symlinks are found print out a report and exit | |
| with status 1. If none are found print out OK and exit with status 0. | |
| """ | |
| import sys | |
| import os | |
| print('Checking for broken symlinks...', end='') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM pymor/python:3.5 | |
| MAINTAINER René Milk <rene.milk@wwu.de> | |
| USER root | |
| ENV SRCDIR /root/src | |
| RUN mkdir ${SRCDIR} && cd ${SRCDIR} && \ | |
| for i in fiat instant dijitso ufl ffc dolfin mshr ; do \ | |
| git clone https://bitbucket.org/fenics-project/$i ; \ | |
| done && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from ubuntu:16.04 | |
| RUN apt-get update && \ | |
| apt-get install -y cmake g++ gcc git python3-dev ninja-build \ | |
| python3-virtualenv && \ | |
| mkdir /root/src && cd /root/src/ && \ | |
| git clone https://github.com/dune-community/dune-gdt-super.git && \ | |
| cd dune-gdt-super && git submodule update --init --recursive | |
| CMD ["/root/src/dune-gdt-super/dune-common/bin/dunecontrol", "--opts=/root/src/dune-gdt-super/config.opts/stinson/gcc_debug", "all"] |
NewerOlder