-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircleci.yml
More file actions
30 lines (29 loc) · 838 Bytes
/
circleci.yml
File metadata and controls
30 lines (29 loc) · 838 Bytes
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
version: 2
jobs:
build:
docker:
- image: "debian:stretch"
parallelism: 4
steps:
- checkout
- run:
name: Installing SUDO
command: 'apt-get update && apt-get install -y sudo && rm -rf /var/lib/apt/lists/*'
- run:
name: Installing GCC
command: 'apt-get update && apt-get install -y gcc g++'
- run:
name: Install CMAKE
command: 'apt-get update && sudo apt-get install -y cmake'
- run:
name: Creating Build Files
command: 'cmake -H. -Bbuild'
- run:
name: Creating Binary Files
command: 'cmake --build build'
- run:
name: Point Unit Testing
command: './build/unit_tests'
- run:
name: Run examples
command: './build/threading_examples'