Skip to content

Commit

Permalink
Merge branch 'master' into control-qp-rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
rajachan authored Aug 29, 2024
2 parents 0f0343c + 49dacb8 commit c11ee00
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/cache_efa_installer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Cache EFA Installer
on:
workflow_dispatch:
schedule:
- cron: "20 4 * * *"

jobs:
cache_efa_installer:
strategy:
matrix:
# fetch just the latest, and the oldest version that is known to work
# with current actions without requiring workarounds
version:
- latest
- 1.25.0
runs-on: ubuntu-latest
steps:
- run: curl -O https://efa-installer.amazonaws.com/aws-efa-installer-${{ matrix.version }}.tar.gz
- run: tar xvf ./aws-efa-installer*.tar.gz
- uses: actions/cache@v4
with:
enableCrossOsArchive: true
key: aws-efa-installer-${{ matrix.version }}
path: aws-efa-installer/*

0 comments on commit c11ee00

Please sign in to comment.