[Scummvm-git-logs] scummvm master -> 5fe99667ce48699c7b8053440f1d0235b52c5826

Die4Ever noreply at scummvm.org
Fri Sep 30 13:36:45 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:
5fe99667ce CI: fix xcodebuild return code getting swallowed by pipe to awk


Commit: 5fe99667ce48699c7b8053440f1d0235b52c5826
    https://github.com/scummvm/scummvm/commit/5fe99667ce48699c7b8053440f1d0235b52c5826
Author: Die4Ever (die4ever2005 at gmail.com)
Date: 2022-09-30T08:36:24-05:00

Commit Message:
CI: fix xcodebuild return code getting swallowed by pipe to awk

Changed paths:
    .github/workflows/ci.yml


diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index aac45afff01..c0844df86d4 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 CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ build -project scummvm.xcodeproj ${{ matrix.buildFlags }} | awk '$1 !~ /^(export|cd|clang++)/'
+          set -o pipefail && 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