1
0
mirror of https://github.com/wg/wrk synced 2026-05-13 17:05:29 +08:00

add azure & circleci configs

This commit is contained in:
Will
2019-04-18 10:51:16 +09:00
Unverified
parent 9f7214502a
commit 0896020a2a
2 changed files with 52 additions and 0 deletions
+46
View File
@@ -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
View File
@@ -0,0 +1,6 @@
jobs:
- job: macos
pool:
vmImage: 'macos-10.14'
steps:
- script: make