Skip to content

Test Cirrus Runners Cache #41

Test Cirrus Runners Cache

Test Cirrus Runners Cache #41

name: Cirrus Runners Cache
on:
push:
jobs:
macos:
name: "${{ matrix.runs_on }} + ${{ matrix.cache_action }}"
strategy:
matrix:
runs_on:
- "ubuntu-latest"
- "ghcr.io/cirruslabs/ubuntu-runner-amd64:22.04-sm"
- "ghcr.io/cirruslabs/macos-sonoma-xcode:latest"
uses:
- "actions/cache@v4"
- "cirruslabs/cache@v4"
runs-on: ${{ matrix.runs_on }}
steps:
- uses: actions/checkout@v4
- name: Print environment
run: env
- name: Cache Binary
id: cache
uses: ${{ matrix.uses }}
with:
path: testfile
key: try-1
- name: Generate Binary
if: steps.cache.outputs.cache-hit != 'true'
run: dd if=/dev/urandom of=testfile bs=1024 count=512000
- name: Stat Binary
run: stat testfile