Skip to content

Commit

Permalink
chore(ci): cache Vagrant boxes with Github Actions Cache
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Heidbrink <jan.heidbrink@tngtech.com>
  • Loading branch information
jheidbrink committed Jun 16, 2022
1 parent cac50e5 commit b54aad3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/bazel-cache-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
- run: echo "::set-output name=date::$(date +'%m-%d-%Y--%H-%M-%S')"
id: date
- uses: actions/checkout@v2
- name: Cache Vagrant Boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: vagrant-boxes-lte
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache Vagrant Boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: vagrant-boxes-lte
- name: setup pyenv
uses: "gabrielfalcao/pyenv-action@v8"
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cwf-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ env.SHA }}
- name: Cache Vagrant Boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: vagrant-boxes-cwf
- name: Run docker compose
run: |
cd cwf/gateway/docker
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/lte-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ env.SHA }}
- name: Cache Vagrant Boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: vagrant-boxes-lte
- name: setup pyenv
uses: "gabrielfalcao/pyenv-action@v8"
with:
Expand Down

0 comments on commit b54aad3

Please sign in to comment.