mirror of https://github.com/axmolengine/axmol.git
By default, build osx on push
This commit is contained in:
parent
a4b6361478
commit
a5c03d7d15
|
@ -7,7 +7,7 @@ env:
|
||||||
TRAVIS_OS_NAME: osx
|
TRAVIS_OS_NAME: osx
|
||||||
BUILD_TARGET: osx
|
BUILD_TARGET: osx
|
||||||
# Simple let github action to build all (TODO: optimize in the future)
|
# Simple let github action to build all (TODO: optimize in the future)
|
||||||
TRAVIS_PULL_REQUEST: false
|
TRAVIS_PULL_REQUEST: true
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
GITHUB_CI: true
|
GITHUB_CI: true
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,11 @@ on: [push]
|
||||||
env:
|
env:
|
||||||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
|
TRAVIS_PULL_REQUEST: false
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
if: "!contains(github.event.commits[0].message, '[skip ci]')"
|
if: "!contains(github.event.commits[0].message, '[skip ci]') && contains(github.event.commits[0].message, 'Merge pull request')"
|
||||||
# The CMake configure and build commands are platform agnostic and should work equally
|
# The CMake configure and build commands are platform agnostic and should work equally
|
||||||
# well on Windows or Mac. You can convert this to a matrix build if you need
|
# well on Windows or Mac. You can convert this to a matrix build if you need
|
||||||
# cross-platform coverage.
|
# cross-platform coverage.
|
||||||
|
|
Loading…
Reference in New Issue