build in one job
This commit is contained in:
		@@ -9,7 +9,7 @@ image: conanio/gcc9:latest
 | 
			
		||||
 | 
			
		||||
cache:
 | 
			
		||||
  paths:
 | 
			
		||||
    - $HOME/.conan/data
 | 
			
		||||
    - ../.conan/data
 | 
			
		||||
 | 
			
		||||
conan:
 | 
			
		||||
  stage: conan
 | 
			
		||||
@@ -19,20 +19,10 @@ conan:
 | 
			
		||||
    - conan user lukas-heiligenbrunner -r bintray -p $CONAN_KEY
 | 
			
		||||
    - conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
 | 
			
		||||
    - CONAN_SYSREQUIRES_MODE=enabled conan install . --build=missing -g cmake -if build
 | 
			
		||||
    - cmake -S . -B build -D WinBuild=OFF -D GUI=OFF
 | 
			
		||||
    - cd build
 | 
			
		||||
    - make
 | 
			
		||||
  artifacts:
 | 
			
		||||
    paths:
 | 
			
		||||
      - build/
 | 
			
		||||
    expire_in: 1 days
 | 
			
		||||
 | 
			
		||||
# Unix Build
 | 
			
		||||
cmake:
 | 
			
		||||
  stage: cmake
 | 
			
		||||
  script:
 | 
			
		||||
    - cmake -S . -B build -D WinBuild=OFF -D GUI=OFF
 | 
			
		||||
 | 
			
		||||
# Unix Build
 | 
			
		||||
build:
 | 
			
		||||
  stage: build
 | 
			
		||||
  script:
 | 
			
		||||
    - cd build
 | 
			
		||||
    - make
 | 
			
		||||
    expire_in: 1 days
 | 
			
		||||
@@ -20,7 +20,7 @@ option(BUILD_DOC "Build documentation" ON) # additional dependency for Doxygen
 | 
			
		||||
option(PACKAGING "Allow Packaging to <exe>, <deb> or <rpm>" ON) # additional dependencies for RPMbuild,dpkg  or NSIS
 | 
			
		||||
option(TESTS "Build Tests" ON) # additional dependencies for GTEST - to build tests
 | 
			
		||||
option(GUI "Build GUI elements" ON) # additional dependencies to QT libraries needed
 | 
			
		||||
option(WinBuild "cross compile for Windows Platform" ON)
 | 
			
		||||
option(WinBuild "cross compile for Windows Platform" OFF)
 | 
			
		||||
 | 
			
		||||
# helper variables
 | 
			
		||||
SET(CMAKE_CXX_STANDARD 17)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
#include <inc/IpHelper.h>
 | 
			
		||||
#include <inc/Logger.h>
 | 
			
		||||
#include <IpHelper.h>
 | 
			
		||||
#include <Logger.h>
 | 
			
		||||
#include "api/IPAPI.h"
 | 
			
		||||
 | 
			
		||||
std::string IPAPI::getGlobalIp() {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user