Skip to content

Commit

Permalink
Merge pull request #63 from edrosten/github-ci
Browse files Browse the repository at this point in the history
Add github actions
  • Loading branch information
edrosten authored Oct 22, 2020
2 parents f42899f + 3cf298a commit 6bce685
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 19 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: C/C++ CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build-test-ubuntu:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure
- name: make
run: make
- name: make test
run: make test
build-windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- name: setup
run: md build
- name: configure
working-directory: ./build
run: cmake -DCVD_ENABLE_PROGS=OFF -DCVD_ENABLE_TESTS=OFF -DCVD_ENABLE_EXAMPLES=OFF ..
- name: compile
working-directory: ./build
run: msbuild CVD.sln



19 changes: 0 additions & 19 deletions circle.yml

This file was deleted.

0 comments on commit 6bce685

Please sign in to comment.