Skip to content

Commit 0b1f681

Browse files
committed
Added mono test
1 parent 7503885 commit 0b1f681

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/workflows/cache-race.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Verdict: The caching service handles this silently
2+
# The "late" job (Platform B in this case) will quietly print the following message in the post step for actions/cache:
3+
# > Failed to save: Unable to reserve cache with key test-key, another job may be creating this cache.
14
name: Test actions/cache race handling
25
on:
36
push:

.github/workflows/mono-check.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Mono check
2+
on:
3+
push:
4+
workflow_dispatch:
5+
jobs:
6+
run:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
platform:
11+
- name: macOS 13 x64
12+
os: macos-13
13+
- name: macOS 14 aarch64
14+
os: maxos-14
15+
- name: macOS 15 aarch64
16+
os: macos-15
17+
name: Test ${{matrix.platform.name}}
18+
runs-on: ${{matrix.platform.os}}
19+
steps:
20+
- run: |
21+
mono &
22+
fuser /usr/libexec/rosetta/runtime

0 commit comments

Comments
 (0)