mirror of https://github.com/chaos-mesh/chaosd.git
Create ci_skip.yml
Signed-off-by: Yue Yang <g1enyy0ung@gmail.com>
This commit is contained in:
parent
aa766590cf
commit
59ac5c5001
|
|
@ -0,0 +1,26 @@
|
|||
name: ci
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
- release-*
|
||||
paths-ignore:
|
||||
- .github/workflows/ci.yml
|
||||
- Makefile
|
||||
- go.*
|
||||
- "**.go"
|
||||
|
||||
jobs:
|
||||
pull:
|
||||
strategy:
|
||||
matrix:
|
||||
arch: [amd64, arm64]
|
||||
job:
|
||||
- verify
|
||||
- build
|
||||
- unit-test
|
||||
- integration-test
|
||||
runs-on: ${{ fromJson('{"amd64":"ubuntu-latest", "arm64":["self-hosted", "Linux", "ARM64"]}')[matrix.arch] }}
|
||||
|
||||
steps:
|
||||
- run: echo "Not required to run pull jobs."
|
||||
Loading…
Reference in New Issue