Skip to content

Commit

Permalink
Add triggers in ci yml
Browse files Browse the repository at this point in the history
  • Loading branch information
daquexian committed May 20, 2019
1 parent 6e21424 commit ac92fc3
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 4 deletions.
23 changes: 21 additions & 2 deletions ci/dabnn_build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
trigger:
branches:
include:
- refs/heads/*
- refs/tags/*
- master
tags:
include:
- v*
paths:
include:
- '*'
exclude:
- README.md
- docs/*
pr:
branches:
include:
- '*'
paths:
include:
- '*'
exclude:
- README.md
- docs/*

pool:
vmImage: 'macOS-10.14'
steps:
Expand Down
27 changes: 25 additions & 2 deletions ci/onnx2bnn_build.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
trigger:
branches:
include:
- refs/heads/*
- refs/tags/*
- master
tags:
include:
- v*
paths:
include:
- '*'
exclude:
- README.md
- docs/*
# not trigger onnx2bnn build when only dabnn is edited
- dabnn/*
pr:
branches:
include:
- '*'
paths:
include:
- '*'
exclude:
- README.md
- docs/*
# not trigger onnx2bnn build when only dabnn is edited
- dabnn/*

jobs:
- job: Linux_AppImage
pool:
Expand Down

0 comments on commit ac92fc3

Please sign in to comment.