-
Notifications
You must be signed in to change notification settings - Fork 2
55 lines (46 loc) · 1.25 KB
/
macos.yml
File metadata and controls
55 lines (46 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: macOS
on: [push, workflow_dispatch]
concurrency:
group: macos-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
strategy:
fail-fast: true
matrix:
os: [macos-14, macos-15, macos-15-intel, macos-26]
racket-variant: ['CS']
racket-version: ['stable']
runs-on: ${{ matrix.os }}
name: OS ${{ matrix.os }} / Racket ${{ matrix.racket-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Racket
uses: Bogdanp/setup-racket@v1.14
with:
architecture: 'x64'
distribution: 'full'
variant: ${{ matrix.racket-variant }}
version: ${{ matrix.racket-version }}
- name: Version info
run: |
uname -a
uname -m
clang --version
gcc --version
- name: Cache Racket packages
uses: actions/cache@v4
with:
path: |
~/.racket
~/.cache/racket
~/.local/share/racket
~/Library/Caches/Racket
key: racket-${{ matrix.racket-variant }}-${{ matrix.racket-version }}-${{ matrix.os }}
- name: Install langs package
run: |
raco pkg install --auto ../langs/
- name: Run tests
run: |
raco test -p langs