1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Index: etlcpp/.circleci/config.yml
===================================================================
--- etlcpp.orig/.circleci/config.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-version: 2
-jobs:
- build:
- docker:
- - image: "rikorose/gcc-cmake:latest"
- branches:
- only:
- - master
- - development
- steps:
- - checkout:
- - run:
- name: Listing0
- command: 'ls -lrt'
- - run:
- name: Creating Build Files
- command: 'cmake -Bbuild test/'
- - run:
- name: Creating Binary Files
- command: 'cmake --build build'
- - run:
- name: Listing1
- command: 'ls -lrt /root/project/build'
- - run:
- name: Listing2
- command: 'ls -lrt /root/project/build/CMakeFiles'
- - run:
- name: Listing3
- command: 'cat /root/project/build/CMakeFiles/CMakeOutput.log'
- - run:
- name: ETL Unit Testing
- command: './build/etl_tests'
|