Skip to content

Commit

Permalink
Merge pull request pocoproject#2735 from bachp/feat/gitlab-ci
Browse files Browse the repository at this point in the history
Initial Gitlab CI support
  • Loading branch information
obiltschnig authored Jun 26, 2019
2 parents 7c3e389 + c4a88ae commit 1528097
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
variables:
GIT_SUBMODULE_STRATEGY: recursive

Build CMake Ubuntu 18.04:
image: "ubuntu:18.04"
before_script:
- apt-get update -qq
- apt-get install -qq -y build-essential libpcre3-dev libssl-dev libexpat1-dev libpq-dev unixodbc-dev libmysqlclient-dev libsqlite3-dev sloccount cppcheck ninja-build
script:
- mkdir cmake_build
- cd cmake_build
- cmake ..
- make

0 comments on commit 1528097

Please sign in to comment.