From b38f63152ba0a5c930cd4042f1bd62f39da3e96f Mon Sep 17 00:00:00 2001 From: Jason Cox Date: Sun, 17 Mar 2024 08:29:51 -0700 Subject: [PATCH] Update build runner --- .github/workflows/build.yml | 2 +- openssl/openssl-build-phase1.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b5408b9..cfbc20b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on - runs-on: macos-11 + runs-on: macos-13 # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/openssl/openssl-build-phase1.sh b/openssl/openssl-build-phase1.sh index e4f7ca5..d7c68ec 100755 --- a/openssl/openssl-build-phase1.sh +++ b/openssl/openssl-build-phase1.sh @@ -321,7 +321,7 @@ buildTVOS() export CC="${BUILD_TOOLS}/usr/bin/gcc -arch ${ARCH}" fi # Starting with XCode 15.3 - LANG=C sed -i -- 's/static volatile intr_signal/static volatile int intr_signal;/' "./crypto/ui/ui_openssl.c" + LANG=C sed -i -- 's/static volatile intr_signal/static volatile int intr_signal/' "./crypto/ui/ui_openssl.c" # Patch Configure to build for tvOS, not iOS LANG=C sed -i -- 's/D\_REENTRANT\:iOS/D\_REENTRANT\:tvOS/' "./Configure"