generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: don't proactively load/save Docker images (#3787)
We're not actually using Docker for every test anymore now that PG is gone.
- Loading branch information
1 parent
ca17408
commit 1c3838d
Showing
3 changed files
with
0 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -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 | ||
|
@@ -56,4 +51,3 @@ runs: | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm- | ||
This file contains 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 |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains 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 |
---|---|---|
|
@@ -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 | ||
|