Skip to content

Commit 9c945ed

Browse files
committed
[TODO] Disable the text replacements for build-option overrides on Mac.
1 parent ec83ed9 commit 9c945ed

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

.github/workflows/root-ci.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -160,24 +160,7 @@ jobs:
160160
OVERRIDES: ${{ join( matrix.overrides, ' ') }}
161161
CONFIGFILE: '.github/workflows/root-ci-config/buildconfig/${{ matrix.platform }}.txt'
162162
shell: bash
163-
run: |
164-
set -x
165-
166-
echo '' >> "$CONFIGFILE"
167-
168-
for ENTRY in $GLOBAL_OVERRIDES $OVERRIDES; do
169-
KEY=$( echo "$ENTRY" | cut -d '=' -f 1 )
170-
171-
# Add entry to file if not exists, otherwise replace
172-
173-
if grep -q "$KEY=" "$CONFIGFILE"; then
174-
sed -i "s/$KEY=.*\$/$ENTRY/" "$CONFIGFILE"
175-
else
176-
echo "$ENTRY" >> "$CONFIGFILE"
177-
fi
178-
done
179-
180-
cat "$CONFIGFILE" || true
163+
run: echo "Remember to set the following overrides GLOBAL=$GLOBAL_OVERRIDES LOCAL=$OVERRIDES"
181164

182165
- uses: root-project/gcc-problem-matcher-improved@main
183166
with:

0 commit comments

Comments
 (0)