Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/caizixian/dacapo-docker


https://github.com/caizixian/dacapo-docker

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# DaCapo benchmarks development container
## Setup
```bash
git clone https://github.com/dacapobench/dacapobench
cd dacapobench/benchmarks
cp default.properties local.properties
sed -i s/java-1.11.0-openjdk-amd64/temurin-11-jdk-amd64/ local.properties
cd ..
docker run -it --rm -v $PWD:/dacapobench -v /etc/passwd:/etc/passwd -v /etc/group:/etc/group -u $(id -u $USER):$(id -g $USER) ghcr.io/caizixian/dacapo-docker:master bash
cd dacapobench/benchmarks
ant # build all benchmarks
```

The `-u` makes sure that the produced build has the right permission on your host machine.

If you are using rootless podman, please substitute the docker command with the following.
```bash
podman run -it --rm -v $PWD:/dacapobench ghcr.io/caizixian/dacapo-docker:master bash
```