diff --git a/.github/workflows/autotools-macos.yml b/.github/workflows/autotools-macos.yml index 24f82c8907..c30ea189b3 100644 --- a/.github/workflows/autotools-macos.yml +++ b/.github/workflows/autotools-macos.yml @@ -2,9 +2,9 @@ name: autotools-macos # autotools build of tesseract and training tools on macos homebrew and macports. # run command line tests, basicapitest and unittests. '--disable-openmp' on: - #push: - schedule: - - cron: 0 20 * * * + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow workflow_dispatch: jobs: diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml index 418287e697..8a76b21cac 100644 --- a/.github/workflows/autotools.yml +++ b/.github/workflows/autotools.yml @@ -2,9 +2,9 @@ name: autotools # autotools build of tesseract and training tools on Ubuntu. # run command line tests, basicapitest and unittests. '--disable-openmp' on: - #push: - schedule: - - cron: 0 20 * * * + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow jobs: linux: diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index 0cfa165941..707586ce0e 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -2,6 +2,9 @@ name: CIFuzz # OSS-Fuzz CI # See https://google.github.io/oss-fuzz/getting-started/continuous-integration/ on: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow pull_request: branches: - main diff --git a/.github/workflows/cmake-win64.yml b/.github/workflows/cmake-win64.yml index d144f75919..82e80bfe7c 100644 --- a/.github/workflows/cmake-win64.yml +++ b/.github/workflows/cmake-win64.yml @@ -2,7 +2,9 @@ # Build Tesseract on Windows using cmake. No Training Tools. name: cmake-win64 on: - #push: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow schedule: - cron: 0 23 * * * workflow_dispatch: diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 5e6750e049..3a9a461fde 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -2,7 +2,9 @@ name: cmake # cmake build of tesseract and training tools on ubuntu and macOS homebrew using Ninja. # test command line version of tesseract. run basicapitest. on: - #push: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow schedule: - cron: 0 21 * * * diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a777bcce40..480d7cb0ca 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -13,7 +13,8 @@ name: "CodeQL" on: push: - branches: [ main ] + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow paths: - '**.cpp' - '**.h' diff --git a/.github/workflows/msys2-4.1.1.yml b/.github/workflows/msys2-4.1.1.yml index 47da44a437..56bd480271 100644 --- a/.github/workflows/msys2-4.1.1.yml +++ b/.github/workflows/msys2-4.1.1.yml @@ -1,6 +1,8 @@ name: msys2-4.1.1 on: - #push: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow schedule: - cron: 0 18 1 * * jobs: diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml index 46fda4588b..5647bdb269 100644 --- a/.github/workflows/msys2.yml +++ b/.github/workflows/msys2.yml @@ -1,7 +1,9 @@ name: msys2 # msys2 build for tesseract -head from main branch. on: - #push: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow schedule: - cron: 0 17 * * * jobs: diff --git a/.github/workflows/sw.yml b/.github/workflows/sw.yml index 276e19a4e7..26922d5fd8 100644 --- a/.github/workflows/sw.yml +++ b/.github/workflows/sw.yml @@ -2,6 +2,8 @@ name: sw on: push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow paths: - '**.cpp' - '**.h' diff --git a/.github/workflows/unittest-disablelegacy.yml b/.github/workflows/unittest-disablelegacy.yml index 5830fd1dcb..1467dd38c7 100644 --- a/.github/workflows/unittest-disablelegacy.yml +++ b/.github/workflows/unittest-disablelegacy.yml @@ -3,7 +3,9 @@ name: unittest-disablelegacy # currently some unittests are failing with disabled legacy engine. on: - #push: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow schedule: - cron: 0 10 * * * diff --git a/.github/workflows/unittest-macos.yml b/.github/workflows/unittest-macos.yml index 60bbc506b3..24be42eef6 100644 --- a/.github/workflows/unittest-macos.yml +++ b/.github/workflows/unittest-macos.yml @@ -1,7 +1,9 @@ name: unittest-macos # autotools build on homebrew. unittests with address sanitizers. with openmp. on: - #push: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow schedule: - cron: 0 0 * * * diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index e879ecdac8..40e15802f0 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -2,7 +2,9 @@ name: unittest # autotools build on ubuntu. unittests with address sanitizers. with openmp. # ubuntu-20.04-gcc-unittest - CI runs out of diskspace. on: - #push: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow schedule: - cron: 0 0 * * * workflow_dispatch: diff --git a/.github/workflows/vcpkg.yml b/.github/workflows/vcpkg.yml index 666b9d25d2..12bf1034f1 100644 --- a/.github/workflows/vcpkg.yml +++ b/.github/workflows/vcpkg.yml @@ -2,7 +2,9 @@ name: vcpkg # build and test of tesseract on windows using vcpkg and cmake. # vcpkg with -head does not work. https://github.com/microsoft/vcpkg/issues/16019 on: - #push: + push: + branches: + - phymbert/features/3798-rendering-resolution-option-github-workflow schedule: - cron: 0 23 * * *