- Notifications
You must be signed in to change notification settings - Fork923
ci: cache embedded postgres downloaded binaries#18477
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
johnstcn wants to merge5 commits intomainChoose a base branch fromcj/cache-embedded-postgres
base:main
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
+132 −4
Open
Changes fromall commits
Commits
Show all changes
5 commits Select commitHold shift + click to select a range
f38ff28
ci: cache embedded postgres downloaded binaries
johnstcndc585db
log.fatal errors instead of panic
johnstcnf66007c
use step output for cache path
johnstcn8cfd0ff
Merge remote-tracking branch 'origin/cj/cache-embedded-postgres' into…
johnstcn0196ab6
praise log
johnstcnFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
47 changes: 47 additions & 0 deletions.github/actions/embedded-pg-cache/download/action.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: "Download Embedded Postgres Cache" | ||
description: | | ||
Downloads the embedded postgres cache and outputs today's cache key. | ||
A PR job can use a cache if it was created by its base branch, its current | ||
branch, or the default branch. | ||
https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache | ||
outputs: | ||
cache-key: | ||
description: "Today's cache key" | ||
value: ${{ steps.vars.outputs.cache-key }} | ||
inputs: | ||
key-prefix: | ||
description: "Prefix for the cache key" | ||
required: true | ||
cache-path: | ||
description: "Path to the cache directory" | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Get date values and cache key | ||
id: vars | ||
shell: bash | ||
run: | | ||
export YEAR_MONTH=$(date +'%Y-%m') | ||
export PREV_YEAR_MONTH=$(date -d 'last month' +'%Y-%m') | ||
export DAY=$(date +'%d') | ||
echo "year-month=$YEAR_MONTH" >> $GITHUB_OUTPUT | ||
echo "prev-year-month=$PREV_YEAR_MONTH" >> $GITHUB_OUTPUT | ||
echo "cache-key=${{ inputs.key-prefix }}-${YEAR_MONTH}-${DAY}" >> $GITHUB_OUTPUT | ||
# By default, depot keeps caches for 14 days. This is plenty for embedded | ||
# postgres, which changes infrequently. | ||
# https://depot.dev/docs/github-actions/overview#cache-retention-policy | ||
- name: Download embedded Postgres cache | ||
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | ||
with: | ||
path: ${{ inputs.cache-path }} | ||
key: ${{ steps.vars.outputs.cache-key }} | ||
# > If there are multiple partial matches for a restore key, the action returns the most recently created cache. | ||
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows#matching-a-cache-key | ||
# The second restore key allows non-main branches to use the cache from the previous month. | ||
# This prevents PRs from rebuilding the cache on the first day of the month. | ||
# It also makes sure that once a month, the cache is fully reset. | ||
restore-keys: | | ||
${{ inputs.key-prefix }}-${{ steps.vars.outputs.year-month }}- | ||
${{ github.ref != 'refs/heads/main' && format('{0}-{1}-', inputs.key-prefix, steps.vars.outputs.prev-year-month) || '' }} |
18 changes: 18 additions & 0 deletions.github/actions/embedded-pg-cache/upload/action.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: "Upload Embedded Postgres Cache" | ||
description: Uploads the embedded Postgres cache. This only runs on the main branch. | ||
inputs: | ||
cache-key: | ||
description: "Cache key" | ||
required: true | ||
cache-path: | ||
description: "Path to the cache directory" | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Upload Embedded Postgres cache | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | ||
with: | ||
path: ${{ inputs.cache-path }} | ||
key: ${{ inputs.cache-key }} |
33 changes: 33 additions & 0 deletions.github/actions/setup-embedded-pg-cache-paths/action.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: "Setup Embedded Postgres Cache Paths" | ||
description: Sets up a path for cached embedded postgres binaries. | ||
outputs: | ||
embedded-pg-cache: | ||
description: "Value of EMBEDDED_PG_CACHE_DIR" | ||
value: ${{ steps.paths.outputs.embedded-pg-cache }} | ||
cached-dirs: | ||
description: "directories that should be cached between CI runs" | ||
value: ${{ steps.paths.outputs.cached-dirs }} | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Override Go paths | ||
id: paths | ||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 | ||
with: | ||
script: | | ||
const path = require('path'); | ||
// RUNNER_TEMP should be backed by a RAM disk on Windows if | ||
// coder/setup-ramdisk-action was used | ||
const runnerTemp = process.env.RUNNER_TEMP; | ||
const embeddedPgCacheDir = path.join(runnerTemp, 'embedded-pg-cache'); | ||
core.exportVariable('EMBEDDED_PG_CACHE_DIR', embeddedPgCacheDir); | ||
core.setOutput('embedded-pg-cache', embeddedPgCacheDir); | ||
const cachedDirs = `${embeddedPgCacheDir}`; | ||
core.setOutput('cached-dirs', cachedDirs); | ||
- name: Create directories | ||
shell: bash | ||
run: | | ||
set -e | ||
mkdir -p "$EMBEDDED_PG_CACHE_DIR" |
23 changes: 21 additions & 2 deletions.github/workflows/ci.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
15 changes: 13 additions & 2 deletionsscripts/embedded-pg/main.go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.