[Scummvm-git-logs] scummvm master -> 744d666ac9d4c351452510922d2c802b4d412cfb
sev-
noreply at scummvm.org
Mon Aug 29 20:11:29 UTC 2022
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:
744d666ac9 CI: Make the Xcode builds around 90% less verbose
Commit: 744d666ac9d4c351452510922d2c802b4d412cfb
https://github.com/scummvm/scummvm/commit/744d666ac9d4c351452510922d2c802b4d412cfb
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2022-08-29T22:11:26+02:00
Commit Message:
CI: Make the Xcode builds around 90% less verbose
xcodebuild has a `-quiet` flag, but this awk call will just remove the
noisiest lines.
Changed paths:
.github/workflows/ci.yml
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 34b52e2268c..228c64e2b65 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -138,7 +138,7 @@ jobs:
cache_key: ${{ matrix.platform }}
- name: Build scummvm
run: |
- xcodebuild CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ build -project scummvm.xcodeproj ${{ matrix.buildFlags }}
+ xcodebuild CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ build -project scummvm.xcodeproj ${{ matrix.buildFlags }} | awk '$1 !~ /^(export|cd|clang++)/'
ls
ubuntu:
name: Ubuntu
More information about the Scummvm-git-logs
mailing list