From bb9c3bb87a32cfeda3fdd186de0e6fe4e4d2be73 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 29 Oct 2025 20:47:46 +0800 Subject: [PATCH] Reapply "Add a once-daily Build All which skips caches (#10731)" This reverts commit e3f049829bff3ac4de9fd271768948efc150e4c3. --- .github/workflows/build_all.yml | 4 ++++ .github/workflows/build_check_cache.yml | 4 ++++ .github/workflows/build_deps.yml | 7 +++++-- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index f61a8b07e9..e54dfe006a 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -30,6 +30,9 @@ on: - 'build_release_macos.sh' - 'scripts/flatpak/**' + schedule: + - cron: '0 17 * * *' # run once a day at 1 AM Singapore time (UTC+8) + workflow_dispatch: # allows for manual dispatch inputs: build-deps-only: @@ -60,6 +63,7 @@ jobs: os: ${{ matrix.os }} arch: ${{ matrix.arch }} build-deps-only: ${{ inputs.build-deps-only || false }} + force-build: ${{ github.event_name == 'schedule' }} secrets: inherit flatpak: name: "Flatpak" diff --git a/.github/workflows/build_check_cache.yml b/.github/workflows/build_check_cache.yml index fcb55681d8..a97962aa7e 100644 --- a/.github/workflows/build_check_cache.yml +++ b/.github/workflows/build_check_cache.yml @@ -12,6 +12,9 @@ on: build-deps-only: required: false type: boolean + force-build: + required: false + type: boolean jobs: check_cache: # determines if there is a cache and outputs variables used in caching process @@ -55,4 +58,5 @@ jobs: os: ${{ inputs.os }} arch: ${{ inputs.arch }} build-deps-only: ${{ inputs.build-deps-only }} + force-build: ${{ inputs.force-build }} secrets: inherit diff --git a/.github/workflows/build_deps.yml b/.github/workflows/build_deps.yml index 5e430bc85f..629fdde2e7 100644 --- a/.github/workflows/build_deps.yml +++ b/.github/workflows/build_deps.yml @@ -19,11 +19,14 @@ on: build-deps-only: required: false type: boolean + force-build: + required: false + type: boolean jobs: build_deps: name: Build Deps - if: inputs.build-deps-only || inputs.valid-cache != true + if: inputs.build-deps-only || inputs.force-build || inputs.valid-cache != true runs-on: ${{ inputs.os }} env: date: @@ -139,7 +142,7 @@ jobs: build_orca: name: Build OrcaSlicer needs: [build_deps] - if: ${{ !cancelled() && !inputs.build-deps-only && (inputs.valid-cache == true && needs.build_deps.result == 'skipped') || (inputs.valid-cache != true && success()) }} + if: ${{ !cancelled() && !inputs.build-deps-only && inputs.force-build || (inputs.valid-cache == true && needs.build_deps.result == 'skipped') || (inputs.valid-cache != true && success()) }} uses: ./.github/workflows/build_orca.yml with: cache-key: ${{ inputs.cache-key }}