Skip to content

Commit

Permalink
fix: don't proactively load/save Docker images (#3787)
Browse files Browse the repository at this point in the history
We're not actually using Docker for every test anymore now that PG is
gone.
  • Loading branch information
alecthomas authored Dec 17, 2024
1 parent ca17408 commit 1c3838d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 20 deletions.
6 changes: 0 additions & 6 deletions .github/actions/build-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ runs:
restore-keys: |
${{ runner.os }}-hermit-cache-${{ steps.bin-hash.outputs.hash }}
${{ runner.os }}-hermit-cache-
- name: Restore Docker Images
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('docker-compose.yml') }}
read-only: true
- name: Restore Go Modules Cache
id: cache-go-modules
uses: actions/cache/restore@v4
Expand Down Expand Up @@ -56,4 +51,3 @@ runs:
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
uses: ./.github/actions/build-cache
- name: Init Hermit
uses: cashapp/[email protected]
- name: Docker Compose
run: just compose-up
- name: Build Language Plugins
run: just build-language-plugins
- name: Test
Expand All @@ -34,8 +32,6 @@ jobs:
uses: ./.github/actions/build-cache
- name: Init Hermit
uses: cashapp/[email protected]
- name: Docker Compose
run: just compose-up
- name: Build Language Plugins
run: just build-language-plugins
- name: Test README
Expand Down Expand Up @@ -166,8 +162,6 @@ jobs:
uses: ./.github/actions/build-cache
- name: Init Hermit
uses: cashapp/[email protected]
- name: Docker Compose
run: just compose-up
- name: Rebuild All
run: just build-all
- name: Check No SCM Changes
Expand Down Expand Up @@ -279,8 +273,6 @@ jobs:
uses: ./.github/actions/build-cache
- name: Init Hermit
uses: cashapp/[email protected]
- name: Docker Compose
run: just compose-up
- name: Download Go Modules
run: go mod download
- name: Build Language Plugins
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/writecache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,8 @@ jobs:
uses: actions/checkout@v4
- name: Init Hermit
uses: cashapp/[email protected]
- name: Save Docker Images
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('docker-compose.yml') }}
- name: Install Hermit Packages
run: hermit install
- name: Docker Compose
run: just compose-up
- name: Rebuild All
run: just build-all
- name: Download Go Dependencies
Expand Down

0 comments on commit 1c3838d

Please sign in to comment.