https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: a102c0e089fce290d3d907518b7e59556e1a7b22 authored by Dmitri Naumov on 03 January 2020, 18:44:44 UTC
Changelog references update.
Tip revision: a102c0e
.gitlab-ci.yml
variables:
  GIT_STRATEGY: fetch
  OPENMPI_VERSIONS: 'off 2.1.6 3.1.4 4.0.1'

build-container:
  tags:
    - docker-shell
  stage: build
  script:
    - git submodule update --init ThirdParty/container-maker
    - virtualenv .venv
    - source .venv/bin/activate
    - pip install -r ThirdParty/container-maker/requirements.txt
    - export PYTHONPATH="${PYTHONPATH}:${PWD}/ThirdParty/container-maker"
    - python ThirdParty/container-maker/ogscm/cli.py -B -C -R --ogs . --pm system --cvode --ompi $OPENMPI_VERSIONS
  artifacts:
    paths:
      - _out/images/*.sif
back to top