https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: c1d15ccd2c24fa4ce0d66051141d6d9a8ea01d6d authored by Lars Bilke on 11 March 2020, 14:28:06 UTC
Release notes 6.3.0
Tip revision: c1d15cc
.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