Skip to content

Commit

Permalink
set version to 0.5.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
psychocoderHPC committed May 4, 2020
1 parent 3c73d9d commit d7e1317
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
# The short X.Y version.
version = u'0.5.0'
# The full version, including alpha/beta/rc tags.
release = u'0.5.0.dev'
release = u'0.5.0-rc1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion include/picongpu/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
#define PICONGPU_VERSION_MAJOR 0
#define PICONGPU_VERSION_MINOR 5
#define PICONGPU_VERSION_PATCH 0
#define PICONGPU_VERSION_LABEL "dev"
#define PICONGPU_VERSION_LABEL "rc1"
10 changes: 5 additions & 5 deletions share/picongpu/dockerfiles/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This exposes the ISAAC port to connect via the webclient to.
.. code:: bash
docker pull ax3l/picongpu
docker run --runtime=nvidia -p 2459:2459 -t ax3l/picongpu:0.5.0 lwfa_live
docker run --runtime=nvidia -p 2459:2459 -t ax3l/picongpu:0.5.0-rc1 lwfa_live
# open firefox and isaac client
or
Expand Down Expand Up @@ -56,20 +56,20 @@ You can also push the result to dockerhub and singularity-hub (you need an accou
cd ubuntu-1604
# docker image
docker build -t ax3l/picongpu:0.5.0 .
docker build -t ax3l/picongpu:0.5.0-rc1 .
# optional: push to dockerhub (needed for singularity bootstrap)
docker login
docker push ax3l/picongpu:0.5.0
docker push ax3l/picongpu:0.5.0-rc1
# optional: mark as latest release
docker tag ax3l/picongpu:0.5.0 ax3l/picongpu:latest
docker tag ax3l/picongpu:0.5.0-rc1 ax3l/picongpu:latest
docker push ax3l/picongpu:latest
# singularity image
singularity create -s 4096 picongpu.img
sudo singularity bootstrap picongpu.img Singularity
# optional: push to a singularity registry
# setup your $HOME/.sregistry first
sregistry push picongpu.img --name ax3l/picongpu --tag 0.5.0
sregistry push picongpu.img --name ax3l/picongpu --tag 0.5.0-rc1
Recipes
-------
Expand Down
4 changes: 2 additions & 2 deletions share/picongpu/dockerfiles/ubuntu-1604/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM nvidia/cuda:9.2-base
MAINTAINER Axel Huebl <a.huebl@hzdr.de>
LABEL maintainer="Axel Huebl <a.huebl@hzdr.de>, Rene Widera <r.widera@hzdr.de>"

# docker and image environment
ENV DEBIAN_FRONTEND=noninteractive \
FORCE_UNSAFE_CONFIGURE=1 \
SPACK_ROOT=/usr/local \
SPACK_EXTRA_REPO=/usr/local/share/spack-repo \
PIC_PACKAGE='picongpu@0.5.0+isaac backend=cuda'
PIC_PACKAGE='picongpu@0.5.0-rc1+isaac backend=cuda'

# install minimal spack dependencies
# - adds gfortran for spack's openmpi package
Expand Down
6 changes: 3 additions & 3 deletions share/picongpu/dockerfiles/ubuntu-1604/Singularity
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Bootstrap: docker
From: ax3l/picongpu:0.5.0
From: ax3l/picongpu:0.5.0-rc1


%labels
Maintainer Axel Huebl <a.huebl@hzdr.de>
Version 0.5.0
Maintainer "Axel Huebl <a.huebl@hzdr.de>, Rene Widera <r.widera@hzdr.de>"
Version 0.5.0-rc1


%runscript
Expand Down

0 comments on commit d7e1317

Please sign in to comment.