aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.gitlab-ci.yml
blob: df19709823f2246a18fd7aa54198324a44c56cc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
image: gcc

build:
  stage: build
  before_script:
     - apt update && apt -y install make autoconf cmake qt5
  script:
    - cmake
    - make
  artifacts:
    paths:
      - mybinary

# run tests using the binary built before
test:
  stage: test
  script: