Skip to content

Commit 579a19f

Browse files
rathbomaclaude
andcommitted
Make file command optional in ARM64 workflows
The file command isn't installed in the base container and isn't critical. Adding || true to prevent workflow failure. πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 522e41b commit 579a19f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

β€Ž.github/workflows/electron-arm64.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
if [ -f "build/Release/sqlanywhere.node" ]; then
6060
echo "βœ“ Native module built successfully"
6161
ls -lh build/Release/sqlanywhere.node
62-
file build/Release/sqlanywhere.node
62+
file build/Release/sqlanywhere.node || true
6363
else
6464
echo "βœ— Native module NOT found"
6565
exit 1

β€Ž.github/workflows/nodejs-arm64.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
if [ -f "build/Release/sqlanywhere.node" ]; then
5050
echo "βœ“ Native module built successfully"
5151
ls -lh build/Release/sqlanywhere.node
52-
file build/Release/sqlanywhere.node
52+
file build/Release/sqlanywhere.node || true
5353
else
5454
echo "βœ— Native module NOT found"
5555
exit 1

0 commit comments

Comments
Β (0)