[Scummvm-git-logs] scummvm master -> cbcfac8a7115d9077973d012c541314b38caa688

orgads orgads at gmail.com
Sun Jul 18 19:35:07 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
cbcfac8a71 CI: Really apply buildcache on macos


Commit: cbcfac8a7115d9077973d012c541314b38caa688
    https://github.com/scummvm/scummvm/commit/cbcfac8a7115d9077973d012c541314b38caa688
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2021-07-18T22:27:55+03:00

Commit Message:
CI: Really apply buildcache on macos

Xcode uses
/Applications/Xcode_10.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
by default. buildcache uses a wrapper for clang/clang++ and the action
prepends the wrapper to the PATH. But in order to use it, clang needs to
be called by its name alone, without full path.

Changed paths:
    .github/workflows/ci.yml


diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d2740a26d1..121ee69667 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -140,7 +140,7 @@ jobs:
           cache_key: ${{ matrix.platform }}
       - name: Build scummvm
         run: |
-          xcodebuild build -project scummvm.xcodeproj ${{ matrix.buildFlags }}
+          xcodebuild CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ build -project scummvm.xcodeproj ${{ matrix.buildFlags }}
           ls
   ubuntu:
     name: Ubuntu




More information about the Scummvm-git-logs mailing list