From 4aa7c53a9aac55ff5a092f716d74de7416bdd9da Mon Sep 17 00:00:00 2001 From: Ben Zhang Date: Tue, 17 Sep 2024 14:56:03 -0700 Subject: [PATCH] Update development manual copy (minor change) (#3182) ## Description Just making a minor copy change in the development manual. ## Checklist - [x] I have read and understood the [WATcloud Guidelines](https://cloud.watonomous.ca/docs/community-docs/watcloud/guidelines) - [x] I have performed a self-review of my code --- pages/docs/community-docs/watcloud/development-manual.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/docs/community-docs/watcloud/development-manual.mdx b/pages/docs/community-docs/watcloud/development-manual.mdx index 53c3b6a..daa1194 100644 --- a/pages/docs/community-docs/watcloud/development-manual.mdx +++ b/pages/docs/community-docs/watcloud/development-manual.mdx @@ -156,15 +156,15 @@ The cache is used to speed up both [CI](https://github.com/WATonomous/infra-conf and [local development](https://github.com/WATonomous/infra-config/pull/3175). The cache is automatically used. Without any changes, the following command should complete quickly[^build-time-with-cache] -and show that almost every stage is loaded from cache: +and show that almost every stage is loaded from the cache: ```bash copy docker compose build provisioner ``` Previously, there was a [cache invalidation issue](https://github.com/WATonomous/infra-config/pull/3176) when files in -the Docker context don't have the same permissions as the cache[^git-docker-permission-difference]. -However, this issue has been fixed using a [workaround](https://github.com/WATonomous/infra-config/pull/3179). +the build context don't have the same permissions as the cache[^git-docker-permission-difference]. +This issue has been fixed using a [workaround](https://github.com/WATonomous/infra-config/pull/3179). [^caching-details]: [Here](https://github.com/WATonomous/infra-config/blob/121af9af1dbe78e187670163545fa6537a26757f/.github/workflows/push-images.yml#L62) is where we push the cache, and [here](https://github.com/WATonomous/infra-config/blob/121af9af1dbe78e187670163545fa6537a26757f/docker-compose.yml#L5-L6) is where we use it. The cache lives [here](https://github.com/WATonomous/infra-config/pkgs/container/infra-config).