From cb67cbef100253c965f0a30cc2582cb1260201b0 Mon Sep 17 00:00:00 2001 From: bjornoleh <63544115+bjornoleh@users.noreply.github.com> Date: Sat, 2 Dec 2023 13:14:03 +0100 Subject: [PATCH] Sync the GitHub runner clock with the Windows time server (#404) Adding a step to workflow jobs that interface Apple servers, as a workaround for build issues caused by runner clocks being out of sync. See https://github.com/actions/runner issue number 2996 for details. - name: Sync clock run: sudo sntp -sS time.windows.com Added to the following workflows / jobs: - validate_secrets.yml / validate-fastlane-secrets - add_identifiers.yml / identifiers - build_iAPS.yml / build - create_certs.yml / certificates --- .github/workflows/add_identifiers.yml | 4 ++++ .github/workflows/build_iAPS.yml | 6 +++++- .github/workflows/create_certs.yml | 4 ++++ .github/workflows/validate_secrets.yml | 4 ++++ 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/add_identifiers.yml b/.github/workflows/add_identifiers.yml index c84dba30aa..f42408a0e2 100644 --- a/.github/workflows/add_identifiers.yml +++ b/.github/workflows/add_identifiers.yml @@ -29,6 +29,10 @@ jobs: - name: Install Project Dependencies run: bundle install + # Sync the GitHub runner clock with the Windows time server (workaround as suggested in https://github.com/actions/runner/issues/2996) + - name: Sync clock + run: sudo sntp -sS time.windows.com + # Create or update identifiers for app - name: Fastlane Provision run: bundle exec fastlane identifiers diff --git a/.github/workflows/build_iAPS.yml b/.github/workflows/build_iAPS.yml index 4b6919a3ff..c230c21e31 100644 --- a/.github/workflows/build_iAPS.yml +++ b/.github/workflows/build_iAPS.yml @@ -228,7 +228,11 @@ jobs: # Install project dependencies - name: Install project dependencies run: bundle install - + + # Sync the GitHub runner clock with the Windows time server (workaround as suggested in https://github.com/actions/runner/issues/2996) + - name: Sync clock + run: sudo sntp -sS time.windows.com + # Build signed iAPS IPA file - name: Fastlane Build & Archive run: bundle exec fastlane build_iAPS diff --git a/.github/workflows/create_certs.yml b/.github/workflows/create_certs.yml index 67db9a2d91..e1b7a2b7b7 100644 --- a/.github/workflows/create_certs.yml +++ b/.github/workflows/create_certs.yml @@ -30,6 +30,10 @@ jobs: - name: Install Project Dependencies run: bundle install + # Sync the GitHub runner clock with the Windows time server (workaround as suggested in https://github.com/actions/runner/issues/2996) + - name: Sync clock + run: sudo sntp -sS time.windows.com + # Create or update certificates for app - name: Create Certificates run: bundle exec fastlane certs diff --git a/.github/workflows/validate_secrets.yml b/.github/workflows/validate_secrets.yml index 18a11aaf5e..9acc599373 100644 --- a/.github/workflows/validate_secrets.yml +++ b/.github/workflows/validate_secrets.yml @@ -129,6 +129,10 @@ jobs: - name: Install Project Dependencies run: bundle install + # Sync the GitHub runner clock with the Windows time server (workaround as suggested in https://github.com/actions/runner/issues/2996) + - name: Sync clock + run: sudo sntp -sS time.windows.com + - name: Validate Fastlane Secrets run: | # Validate Fastlane Secrets