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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
default:
@echo "Existing Targets:"
@echo " make build-deps -> build an image with all possible SimGrid dependencies"
@echo " make stable -> build the latest stable version of SimGrid (with SMPI w/o MC)"
@echo " make unstable -> build the git version of SimGrid (with SMPI, w/o MC)"
@echo " make tuto-s4u -> build all what you need to take the S4U tutorial"
@echo " make tuto-smpi -> build all what you need to take the SMPI tutorial"
@echo " make tuto-mc -> build the git version of SimGrid (with SMPI and MC)"
@echo " make all -> build all but stable (ie, build-deps unstable tuto-s4u tuto-smpi)"
@echo " make push -> push all images to the cloud"
@echo "All our images are based on debian:testing"
@echo "Also possible: DOCKER_EXTRA=--no-cache make unstable"
all: build-deps unstable tuto-s4u tuto-smpi tuto-mc
stable:
# docker build -f Dockerfile.stable --build-arg DLURL=/simgrid/simgrid/-/archive/v3.28/simgrid-v3.28.tar.gz -t simgrid/stable:latest -t simgrid/stable:v3.25 . |tee stable.log
export last_tag=$$(wget https://framagit.org/simgrid/simgrid/tags 2>/dev/null -O - | grep /simgrid/simgrid/-/tags/v | head -n1 | sed 's/[^>]*>//' | sed 's/<.*//'); \
echo "DLURL=/simgrid/simgrid/-/archive/$${last_tag}/simgrid-$${last_tag}.tar.gz";\
docker build -f Dockerfile.stable \
--build-arg DLURL=/simgrid/simgrid/-/archive/$${last_tag}/simgrid-$${last_tag}.tar.gz \
-t simgrid/stable:latest \
-t simgrid/stable:$${last_tag} \
$(DOCKER_EXTRA) \
. | tee stable.log
unstable:
docker build -f Dockerfile.unstable \
-t simgrid/unstable:latest \
-t simgrid/unstable:$$(date --iso-8601) \
$(DOCKER_EXTRA) \
. | tee unstable.log
build-deps:
docker build -f Dockerfile.build-deps \
-t simgrid/build-deps:latest \
-t simgrid/build-deps:$$(date --iso-8601) \
$(DOCKER_EXTRA) \
. | tee build-deps.log
tuto-mc:
docker build -f Dockerfile.tuto-mc \
-t simgrid/tuto-mc:latest \
-t simgrid/tuto-mc:$$(date --iso-8601) \
$(DOCKER_EXTRA) \
. | tee tuto-mc.log
mc-slim:
docker build -f Dockerfile.mc-slim \
-t simgrid/mc-slim:latest \
-t simgrid/mc-slim:$$(date --iso-8601) \
$(DOCKER_EXTRA) \
. | tee mc-slim.log
build-deps-stable:
docker build -f Dockerfile.build-deps-stable \
-t simgrid/build-deps-stable:latest \
-t simgrid/build-deps-stable:$$(date --iso-8601) \
$(DOCKER_EXTRA) \
. | tee build-deps-stable.log
tuto-s4u:
docker build -f Dockerfile.tuto-s4u \
-t simgrid/tuto-s4u:latest \
-t simgrid/tuto-s4u:$$(date --iso-8601) \
$(DOCKER_EXTRA) \
. | tee tuto-s4u.log
tuto-smpi:
docker build -f Dockerfile.tuto-smpi \
-t simgrid/tuto-smpi:latest \
-t simgrid/tuto-smpi:$$(date --iso-8601) \
$(DOCKER_EXTRA) \
. | tee tuto-smpi.log
push:
docker push --all-tags simgrid/build-deps
docker push --all-tags simgrid/stable
docker push --all-tags simgrid/unstable
docker push --all-tags simgrid/tuto-s4u
docker push --all-tags simgrid/tuto-smpi
docker push --all-tags simgrid/tuto-mc
|