From 0f1ca2933dd4cea3a16dc60d7b19380f6c213434 Mon Sep 17 00:00:00 2001 From: Bram Date: Sat, 17 Sep 2022 22:07:34 +0200 Subject: CI/macos: Remove `export SDK` I'm not sure tho that what was ever added.. The build and test appear to work fine when it's not set. README.macosx does mention it but there it does get used. From README.macosx#sdk-support : First, export the path to the SDK into the build environment: export SDK=.... ... You can use the SDK by exporting some additions to Perl's 'ccflags' and '..flags' config variables: ./Configure -Accflags="-nostdinc -B$SDK/usr/include/gcc \ -B$SDK/usr/lib/gcc -isystem$SDK/usr/include \ -F$SDK/System/Library/Frameworks" \ -Aldflags="-Wl,-syslibroot,$SDK" \ -de But nothing in the ci worflow appears to do that.. So as far as I can tell `$SDK` is never used. --- .github/workflows/testsuite.yml | 1 - 1 file changed, 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 2d6e6ff2f6..1523db6b8f 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -318,7 +318,6 @@ jobs: - uses: actions/checkout@v2 - name: Configure run: | - export SDK=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk sh ./Configure -des -Dusedevel ${{ matrix.CONFIGURE_ARGS }} - name: Build run: | -- cgit v1.2.1