8000 chore: run `make clean` on workspace startup by aslilac · Pull Request #16660 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

chore: run make clean on workspace startup #16660

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 3 commits into from
Feb 24, 2025
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
on startup actually
  • Loading branch information
aslilac committed Feb 21, 2025
commit 25aed29334b88add601fb150cac0095cb5208cd5
9 changes: 1 addition & 8 deletions dogfood/contents/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -342,15 +342,8 @@ resource "coder_agent" "dev" {
while ! [[ -f "${local.repo_dir}/site/package.json" ]]; do
sleep 1
done
make clean
cd "${local.repo_dir}/site" && pnpm install && pnpm playwright:install
EOT

shutdown_script = <<-EOT
#!/usr/bin/env bash
set -eux -o pipefail

cd "${local.repo_dir}" && make clean
cd "${local.repo_dir}/site" && pnpm install && pnpm playwright:install
EOT
}

Expand Down
Loading
0