1
0
複製 0

Add circleci configuration for macOS

timestamps
dump_stack() 2019-12-28 00:53:00 +00:00
父節點 2494c94f6e
當前提交 7f418b30ac
簽署人: dump_stack
GPG Key ID: BE44DA8C062D87DC
共有 1 個文件被更改,包括 24 次插入0 次删除

24
.circleci/config.yml Normal file
查看文件

@ -0,0 +1,24 @@
version: 2
jobs:
build:
macos:
steps:
- checkout
- run:
name: Install dependencies
command: brew install go qemu
- run:
name: Build
command: go build
- run:
name: End-to-End Testing [Kernel Module]
command: |
cd examples/kernel-module
../../out-of-tree kernel autogen --max=1
../../out-of-tree pew --qemu-timeout=10m
- run:
name: End-to-End Testing [Kernel Exploit]
command: |
cd examples/kernel-exploit
../../out-of-tree kernel autogen --max=1
../../out-of-tree pew --threshold=0 --qemu-timeout=10m