Skip to content

Commit

Permalink
ci: re-enable GHA caching
Browse files Browse the repository at this point in the history
Reverts #875 since moby/buildkit#2276 is now closed.

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
  • Loading branch information
aluzzardi committed Oct 5, 2021
1 parent 0dbf4d4 commit 4cce3de
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -97,7 +97,13 @@ jobs:
mkdir -p ~/.config/dagger
echo "$DAGGER_AGE_KEY" > ~/.config/dagger/keys.txt
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v1

- name: Integration test
env:
DAGGER_CACHE_TO: "type=gha,scope=integration"
DAGGER_CACHE_FROM: "type=gha,scope=integration"
run: |
env
make core-integration
Expand Down Expand Up @@ -151,7 +157,13 @@ jobs:
aws --endpoint-url=http://localhost:4566 s3 mb s3://dagger-ci
aws --endpoint-url=http://localhost:4566 ecr create-repository --repository-name dagger-ci
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v1

- name: Universe Test
env:
DAGGER_CACHE_TO: "type=gha,scope=universe"
DAGGER_CACHE_FROM: "type=gha,scope=universe"
run: |
make universe-test
Expand Down Expand Up @@ -252,6 +264,12 @@ jobs:
mkdir -p ~/.config/dagger
echo "$DAGGER_AGE_KEY" > ~/.config/dagger/keys.txt
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v1

- name: Documentation Test
env:
DAGGER_CACHE_TO: "type=gha,scope=docs"
DAGGER_CACHE_FROM: "type=gha,scope=docs"
run: |
make doc-test

0 comments on commit 4cce3de

Please sign in to comment.