Skip to content

Conversation

BrunoQuaresma
Copy link
Contributor

No description provided.

@BrunoQuaresma BrunoQuaresma requested a review from hugodutka June 3, 2025 16:10
@BrunoQuaresma BrunoQuaresma self-assigned this Jun 3, 2025
Comment on lines +26 to +43
- name: Install chat dependencies
run: |
cd chat
bun install

- name: Build chat
run: |
cd chat
BASE_PATH=/magic-base-path-placeholder bun run build

- name: Verify build output
run: |
if [ ! -d "chat/out" ]; then
echo "Build failed: chat/out directory not found"
exit 1
fi
echo "Chat build completed successfully"
ls -la chat/out/
Copy link
Collaborator

@hugodutka hugodutka Jun 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please use make build instead. take a look at

GOOS=$goos GOARCH=$goarch BINPATH="out/$artifact_name" make build
(no need to customize os, arch, and binpath, just plain make build will suffice for testing)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants