Skip to content

Commit

Permalink
Add a simple CircleCI configuration. (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
PetterS committed Aug 30, 2018
1 parent 106e53e commit 04d045a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,36 @@
version: 2
jobs:
build:
docker:
- image: circleci/18.04-scm

working_directory: ~/source

steps:
- checkout

- run:
name: Install CMake
command: |
sudo apt-get install cmake
- run:
name: Run CMake
command: |
cd ..
cd build
cmake ../source
- run:
name: Compile
command: |
cd ..
cd build
make
- run:
name: Test
command: |
cd ..
cd build
make test

0 comments on commit 04d045a

Please sign in to comment.