This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mesa-framework-mesa-handle-…/.gitlab-ci.yml
2019-05-21 13:18:52 +08:00

26 lines
500 B
YAML

image: "git.mesalab.cn:7443/mesa_framework/framework-build-env:master"
stages:
- build
#- test
#- package
#- release
build:
stage: build
script:
- mkdir -p build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH=$BUILD_PREFIX
- make
- make package
tags:
- share
variables:
BUILD_TYPE: "Debug"
BUILD_PREFIX: "/opt/MESA/"
only:
- tags
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME-debug"
paths:
- ./build/*.rpm