https://github.com/grosenberger/OpenMS
Raw File
Tip revision: bfb26979a2915643a01be494f6befcd5387b5223 authored by M Bernt on 20 February 2020, 15:46:22 UTC
TOFCalibration: be more precise in input formats (#4525)
Tip revision: bfb2697
.gitpod.yml
tasks:
  - init: mkdir -p build && pushd build && cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_PREFIX_PATH='/contrib-build/;/usr/;/usr/local' -DBOOST_USE_STATIC=OFF ../ && popd
    prebuild: mkdir -p build && pushd build && make -j16 && popd 
image:
  file: .gitpod.Dockerfile
github:
#foo
  prebuilds:
    # enable for the master/default branch (defaults to true)
    master: true
    # enable for all branches in this repo (defaults to false)
    branches: false
    # enable for pull requests coming from this repo (defaults to true)
    pullRequests: true
    # enable for pull requests coming from forks (defaults to false)
    pullRequestsFromForks: false
    # add a check to pull requests (defaults to true)
    addCheck: false
    # add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
    addComment: false
    # add a "Review in Gitpod" button to the pull request's description (defaults to false)
    addBadge: false
    # add a label once the prebuild is ready to pull requests (defaults to false)
    addLabel: false
vscode:
  extensions:
    - ms-vscode.cpptools@0.26.2:Pq/tmf2WN3SanVzB4xZc1g==
back to top