Skip to content

Commit

Permalink
add azure & circleci configs
Browse files Browse the repository at this point in the history
  • Loading branch information
wg committed Apr 18, 2019
1 parent 9f72145 commit 0896020
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
version: 2
jobs:
"alpine":
docker:
- image: alpine:latest
steps:
- run: apk update && apk add build-base git linux-headers perl
- checkout
- run: make
"centos-7":
docker:
- image: centos:7
steps:
- run: yum groupinstall -y "Development Tools"
- checkout
- run: make
"debian stable":
docker:
- image: debian:stable
steps:
- run: apt update && apt install -y build-essential git
- checkout
- run: make
"ubuntu-16.04":
docker:
- image: ubuntu:16.04
steps:
- run: apt update && apt install -y build-essential git
- checkout
- run: make
"ubuntu-18.04":
docker:
- image: ubuntu:18.04
steps:
- run: apt update && apt install -y build-essential git
- checkout
- run: make
workflows:
version: 2
build:
jobs:
- "alpine"
- "centos-7"
- "debian stable"
- "ubuntu-16.04"
- "ubuntu-18.04"
6 changes: 6 additions & 0 deletions azure-piplines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
jobs:
- job: macos
pool:
vmImage: 'macos-10.14'
steps:
- script: make

0 comments on commit 0896020

Please sign in to comment.