Skip to content

Commit

Permalink
Try and make collab deploys faster (#7746)
Browse files Browse the repository at this point in the history
Use github machines and build on host instead of in container

Release Notes:

- N/A
  • Loading branch information
ConradIrwin authored Feb 14, 2024
1 parent 8e52cf1 commit cbbc8ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_collab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ jobs:
- name: Sign into DigitalOcean docker registry
run: doctl registry login

- name: Prune Docker system
run: docker system prune --filter 'until=720h' -f

- name: Checkout repo
uses: actions/checkout@v4
with:
Expand All @@ -78,6 +75,9 @@ jobs:
- name: Publish docker image
run: docker push registry.digitalocean.com/zed/collab:${GITHUB_SHA}

- name: Prune Docker system
run: docker system prune --filter 'until=72h' -f

deploy:
name: Deploy new server image
needs:
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ ARG GITHUB_SHA
ENV GITHUB_SHA=$GITHUB_SHA
RUN --mount=type=cache,target=./script/node_modules \
--mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/usr/local/cargo/git \
--mount=type=cache,target=./target \
cargo build --release --package collab --bin collab

Expand Down

0 comments on commit cbbc8ca

Please sign in to comment.