Skip to content

Commit

Permalink
Test Cirrus Runners Cache
Browse files Browse the repository at this point in the history
  • Loading branch information
edigaryev committed Apr 9, 2024
0 parents commit ec364ca
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/cirrus-runners-cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Cirrus Runners Cache

on:
push:

jobs:
macos:
name: "Test on ${{ matrix.runs_on }}"

strategy:
matrix:
runs_on:
- "ubuntu-latest"
- "ghcr.io/cirruslabs/ubuntu-runner-amd64:22.04-sm"
- "ghcr.io/cirruslabs/macos-sonoma-xcode:latest"

runs-on: ${{ matrix.runs_on }}

steps:
- uses: actions/checkout@v4

- name: Print environment
run: env

- name: Cache Binary
id: cache-bin
uses: cirruslabs/cache@v4
with:
path: testfile
key: try-1

- name: Generate Binary
if: steps.cache-bin.outputs.cache-hit != 'true'
run: dd if=/dev/urandom of=testfile bs=1024 count=512000

- name: Stat Binary
run: stat testfile

0 comments on commit ec364ca

Please sign in to comment.