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 8, 2024
0 parents commit 4aede41
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/cirrus-runners-cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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

- uses: actions/setup-go@v5
with:
go-version: 1.22

- name: Print environment
run: env

- name: find /home/admin/actions-runner/
run: find /home/admin/actions-runner/

- name: Cache Binary
id: cache-bin
uses: edigaryev/cache@redefine
with:
path: testfile
key: testfile

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

- name: Stat Binary
run: stat testfile

0 comments on commit 4aede41

Please sign in to comment.