Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
876aeb35
Unverified
Commit
876aeb35
authored
Apr 17, 2026
by
Saravana Periyasamy
Committed by
GitHub
Apr 17, 2026
Browse files
fix(ci): Cleanup build logs (#8317)
Co-authored-by:
Claude Opus 4.6
<
noreply@anthropic.com
>
parent
0c7068dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
.github/actions/docker-remote-build/action.yml
.github/actions/docker-remote-build/action.yml
+3
-0
container/templates/wheel_builder.Dockerfile
container/templates/wheel_builder.Dockerfile
+2
-0
No files found.
.github/actions/docker-remote-build/action.yml
View file @
876aeb35
...
@@ -164,11 +164,14 @@ runs:
...
@@ -164,11 +164,14 @@ runs:
# Pass AWS credentials as build secrets for sccache S3 access.
# Pass AWS credentials as build secrets for sccache S3 access.
# Dockerfile steps reference these via --mount=type=secret,id=aws-key-id,env=...
# Dockerfile steps reference these via --mount=type=secret,id=aws-key-id,env=...
# Disable tracing to prevent set -x from leaking credentials into logs.
set +x
SECRET_ARGS=""
SECRET_ARGS=""
if [ "${{ inputs.use_sccache }}" == "true" ] && [ -n "${AWS_ACCESS_KEY_ID:-}" ]; then
if [ "${{ inputs.use_sccache }}" == "true" ] && [ -n "${AWS_ACCESS_KEY_ID:-}" ]; then
SECRET_ARGS+=" --secret id=aws-key-id,env=AWS_ACCESS_KEY_ID"
SECRET_ARGS+=" --secret id=aws-key-id,env=AWS_ACCESS_KEY_ID"
SECRET_ARGS+=" --secret id=aws-secret-id,env=AWS_SECRET_ACCESS_KEY"
SECRET_ARGS+=" --secret id=aws-secret-id,env=AWS_SECRET_ACCESS_KEY"
fi
fi
set -x
docker buildx build \
docker buildx build \
--progress=plain \
--progress=plain \
...
...
container/templates/wheel_builder.Dockerfile
View file @
876aeb35
...
@@ -292,6 +292,8 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \
...
@@ -292,6 +292,8 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \
/tmp/use-sccache.sh show-stats
"FFMPEG"
&&
\
/tmp/use-sccache.sh show-stats
"FFMPEG"
&&
\
ldconfig
&&
\
ldconfig
&&
\
mkdir
-p
/usr/local/src/ffmpeg
&&
\
mkdir
-p
/usr/local/src/ffmpeg
&&
\
# Remove build artifacts (config.log, etc.) before preserving the source.
find /tmp/ffmpeg-${FFMPEG_VERSION} -name config.log -delete && \
mv /tmp/ffmpeg-${FFMPEG_VERSION}* /usr/local/src/ffmpeg/
mv /tmp/ffmpeg-${FFMPEG_VERSION}* /usr/local/src/ffmpeg/
# Build and install UCX
# Build and install UCX
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment