8000 feat: arm(v7/64) builds for releases and agent scripts by bpmct · Pull Request #1337 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: arm(v7/64) builds for releases and agent scripts #1337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 11, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use descript armv7 binary
  • Loading branch information
bpmct committed May 11, 2022
commit 449ef7b564ccbd3809a02087206fa7c5793e4a95
2 changes: 1 addition & 1 deletion provisionersdk/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ exec $BINARY_LOCATION agent`,
"armv7": `#!/usr/bin/env sh
set -eu pipefail
export BINARY_LOCATION=$(mktemp -d -t tmp.coderXXXXX)/coder
curl -fsSL ${ACCESS_URL}bin/coder-linux-arm -o $BINARY_LOCATION
curl -fsSL ${ACCESS_URL}bin/coder-linux-armv7 -o $BINARY_LOCATION
chmod +x $BINARY_LOCATION
export CODER_AGENT_AUTH="${AUTH_TYPE}"
export CODER_AGENT_URL="${ACCESS_URL}"
Expand Down
0