Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update code generation section to add CXF #157

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

updating CXF generation

72864f0
Select commit
Loading
Failed to load commit list.
Open

Update code generation section to add CXF #157

updating CXF generation
72864f0
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Nov 7, 2024 in 4m 32s

Build Passed

The build passed.

Details

This is a normal build for the issue156_generate_cxf branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Python Version 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "python": [
    "3.8"
  ],
  "cache": {
    "pip": true
  },
  "env": [
    "global={:DOCKER_REPONAME=>\"lbnlblum\"}={:OMC_VERSION=>\"ubuntu-2204-omc:1.22.0_dev-41-g8a5b18f-1\"}={:MODELICA_BUILDINGS_VERSION=>\"9.1.0\"}={:MODELICA_JSON_VERSION=>\"ac5580f720b553617cde76996d1d56d4b4e28cc0\"}={:MODELICAPATH=>\"${TRAVIS_BUILD_DIR}/modelica-buildings\"}={:MODELICAJSONPATH=>\"${TRAVIS_BUILD_DIR}/modelica-json\"}"
  ],
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "git": {
    "depth": 10
  },
  "addons": {
    "apt": {
      "packages": [
        "graphviz"
      ]
    }
  },
  "before_install": [
    "chmod +x software/verification/travis/omc",
    "docker pull ${DOCKER_REPONAME}/${OMC_VERSION}; cp software/verification/travis/omc $HOME/bin/omc;",
    "wget --no-verbose https://github.com/lbl-srg/modelica-json/archive/${MODELICA_JSON_VERSION}.tar.gz; tar xzf ${MODELICA_JSON_VERSION}.tar.gz; rm ${MODELICA_JSON_VERSION}.tar.gz; mv modelica-json-${MODELICA_JSON_VERSION} ${MODELICAJSONPATH}; cd ${MODELICAJSONPATH}; make install-node-packages; make compile; cd -; echo \"Installed modelica-json in ${MODELICAJSONPATH}\";",
    "wget --no-verbose https://github.com/lbl-srg/modelica-buildings/archive/refs/tags/v${MODELICA_BUILDINGS_VERSION}.tar.gz; tar xzf modelica-buildings-${MODELICA_BUILDINGS_VERSION}.tar.gz; rm modelica-buildings-${MODELICA_BUILDINGS_VERSION}.tar.gz; mv modelica-buildings-${MODELICA_BUILDINGS_VERSION} ${MODELICAPATH}; cd ${MODELICAPATH}; cd -; echo \"Set up modelica-buildings at ${MODELICAPATH}\";"
  ],
  "install": [
    "pip3 install --upgrade pip wheel",
    "pip3 install sphinx==4.3.2 \\ sphinx-bootstrap-theme==0.8.0 \\ sphinxcontrib-bibtex==2.4.1 \\ sphinxcontrib-plantuml==0.22 \\ alabaster==0.7.12 \\ MarkupSafe==1.1.1 \\ Pygments==2.4.2 \\ snowballstemmer==1.9.0 \\ docutils==0.17.1 \\ Babel==2.7.0 \\ requests==2.27.0 \\ Jinja2==2.11.3 \\ latexcodec==1.0.7 \\ pybtex==0.24.0 \\ pybtex-docutils==1.0.1 \\ oset==0.1.3 \\ PyYAML==5.4",
    "pip3 install -r ${TRAVIS_BUILD_DIR}/software/verification/requirements.txt"
  ],
  "script": [
    "(cd specification; make clean html; cd ..)",
    "(cd specification; make latex; cd ..)",
    "(cd specification; make linkcheck SPHINXOPTS=-W; cd ..)",
    "(cd software/verification; make test-verification; cd ../..)"
  ]
}