Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/local-cache-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,32 @@ jobs:
test:
name: cache integration tests
runs-on: ubuntu-latest
permissions:
packages: read
steps:
- uses: actions/checkout@v4
- name: login to ghcr
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: restore image cache
id: cache
uses: actions/cache@v4
with:
path: ~/image-cache
key: base-images-v1
- name: pull and retag images
if: steps.cache.outputs.cache-hit != 'true'
run: |
mkdir -p ~/image-cache
docker pull ghcr.io/systemaccounting/redis:latest
docker tag ghcr.io/systemaccounting/redis:latest public.ecr.aws/bitnami/redis:latest
docker save -o ~/image-cache/images.tar public.ecr.aws/bitnami/redis:latest
- name: load cached images
if: steps.cache.outputs.cache-hit == 'true'
run: docker load -i ~/image-cache/images.tar
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
Expand Down
30 changes: 0 additions & 30 deletions .github/workflows/prod-client-docker-base.yaml

This file was deleted.

1 change: 1 addition & 0 deletions crates/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "service"
version = "0.1.0"
edition = "2021"
rust-version.workspace = true
description = "service"

[dependencies]
types = { path = "../types" }
Expand Down