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.
This commit is contained in:
Orgad Shaneh 2021-07-18 22:22:48 +03:00
parent 0094487489
commit cbcfac8a71

View File

@ -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