File: .gitlab-ci.yml

package info (click to toggle)
kim-api 2.0~beta2.gita734d1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,944 kB
  • sloc: cpp: 22,447; f90: 13,218; ansic: 3,865; sh: 1,960; makefile: 298
file content (10 lines) | stat: -rw-r--r-- 335 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
test:default:
  image: fedora:latest
  script:
    - dnf -y install make cmake git gcc-c++ gcc-gfortran ccache wget vim-common
    - mkdir build
    - cd build
    - cmake -DKIM_API_BUILD_MODELS_AND_DRIVERS=ON ..
    - make
    - make test
    - make install DESTDIR=${PWD}/install && rm -rf ${PWD}/install/usr && rmdir ${PWD}/install