[go: up one dir, main page]

File: .gitlab-ci.yml

package info (click to toggle)
libfreesrp 0.3.0-5
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 536 kB
  • sloc: cpp: 3,755; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: ubuntu:16.04

build:
  stage: build
  before_script: 
    - apt update && apt -y install build-essential cmake libusb-1.0-0-dev libboost-all-dev
  script: 
    - mkdir build
    - cd build
    - cmake .. -DCMAKE_BUILD_TYPE=Release
    - make
  artifacts:
    paths:
      - build/libfreesrp.so
      - build/freesrp-io
      - build/freesrp-ctl