Merge pull request #456 from libexpat/actions-enable-periodic-builds

GitHub Actions: Enable periodic CI runs
This commit is contained in:
Sebastian Pipping 2021-04-05 20:03:14 +02:00 committed by GitHub
commit b99f9f5104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 10 deletions

View File

@ -4,8 +4,10 @@
name: Ensure that Autotools install identical CMake files
on:
- pull_request
- push
pull_request:
push:
schedule:
- cron: '0 2 * * 5' # Every Friday at 2am
jobs:
checks:

View File

@ -4,8 +4,10 @@
name: Check expat_config.h.{in,cmake} for regressions
on:
- pull_request
- push
pull_request:
push:
schedule:
- cron: '0 2 * * 5' # Every Friday at 2am
jobs:
checks:

View File

@ -4,8 +4,10 @@
name: Run Linux Travis CI tasks
on:
- pull_request
- push
pull_request:
push:
schedule:
- cron: '0 2 * * 5' # Every Friday at 2am
jobs:
checks:

View File

@ -4,8 +4,10 @@
name: Run macOS Travis CI tasks
on:
- pull_request
- push
pull_request:
push:
schedule:
- cron: '0 2 * * 5' # Every Friday at 2am
jobs:
checks:

View File

@ -70,7 +70,7 @@ elif [[ ${MODE} = cppcheck ]]; then
-name xmltok_ns.c
-o -name xmltok_impl.c
\)
-exec cppcheck --quiet --error-exitcode=1 --force {} +
-exec cppcheck --quiet --error-exitcode=1 --force --suppress=objectIndex {} +
)
find "${find_args[@]}"
elif [[ ${MODE} = clang-format ]]; then

View File

@ -4,7 +4,7 @@ if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5)
message(FATAL_ERROR "CMake >= 2.6.0 required")
endif()
cmake_policy(PUSH)
cmake_policy(VERSION 2.6...3.17)
cmake_policy(VERSION 2.6...3.18)
#----------------------------------------------------------------
# Generated CMake target import file.
#----------------------------------------------------------------