Skip to content

Commit

Permalink
Use Linux workflow cache if other not available
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Stachyra committed Nov 22, 2021
1 parent 5356643 commit 087f7a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-docker.yml
Expand Up @@ -68,7 +68,8 @@ jobs:
key: node-db-docker-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }}
restore-keys: |
node-db-docker-${{ env.NETWORK }}-
node-db-Linux-${{ env.NETWORK }}-
- name: 🚀 Start node and wallet
run: |
echo "Wallet: $WALLET"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e-macos.yml
Expand Up @@ -47,6 +47,7 @@ jobs:
key: node-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }}
restore-keys: |
node-db-${{ runner.os }}-${{ env.NETWORK }}-
node-db-Linux-${{ env.NETWORK }}-
- name: ⚙️ Setup (get latest bins and configs and decode fixtures)
run: rake setup[$NETWORK]
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/e2e-windows.yml
Expand Up @@ -50,13 +50,14 @@ jobs:
key: node-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }}
restore-keys: |
node-db-${{ runner.os }}-${{ env.NETWORK }}-
node-db-Linux-${{ env.NETWORK }}-
- name: ⚙️ Setup (get latest bins and configs and decode fixtures)
run: rake setup[%NETWORK%]

- name: 🔍 Display versions
run: rake display_versions

- name: 🚀 Start node and wallet
run: rake start_node_and_wallet[%NETWORK%]

Expand Down

0 comments on commit 087f7a5

Please sign in to comment.