Disable CI on non-master branches
This commit is contained in:
parent
57c1e6587e
commit
fa1558319b
|
@ -1,6 +1,12 @@
|
||||||
name: CMake Build (Ubuntu x86-64)
|
name: CMake Build (Ubuntu x86-64)
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
env:
|
env:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
name: CMake Build (Windows x86-64)
|
name: CMake Build (Windows x86-64)
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
env:
|
env:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
|
|
Loading…
Reference in New Issue