8
8
jobs :
9
9
simple-build :
10
10
strategy :
11
+ fail-fast : false
11
12
matrix :
12
- os : [ubuntu-latest, macos-13]
13
+ os :
14
+ - ubuntu-latest
15
+ - macos-latest
16
+ - macos-13
13
17
runs-on : ${{ matrix.os }}
14
18
steps :
15
19
- uses : actions/checkout@v4
@@ -22,10 +26,15 @@ jobs:
22
26
# cachix should be available and be able to configure a cache
23
27
- run : cachix use cachix
24
28
- run : nix-build test.nix
29
+
25
30
custom-nix-path :
26
31
strategy :
32
+ fail-fast : false
27
33
matrix :
28
- os : [ubuntu-latest, macos-13]
34
+ os :
35
+ - ubuntu-latest
36
+ - macos-latest
37
+ - macos-13
29
38
runs-on : ${{ matrix.os }}
30
39
steps :
31
40
- uses : actions/checkout@v4
38
47
39
48
extra-nix-config :
40
49
strategy :
50
+ fail-fast : false
41
51
matrix :
42
- os : [ubuntu-latest, macos-13]
52
+ os :
53
+ - ubuntu-latest
54
+ - macos-latest
55
+ - macos-13
43
56
runs-on : ${{ matrix.os }}
44
57
steps :
45
58
- uses : actions/checkout@v4
54
67
55
68
flakes :
56
69
strategy :
70
+ fail-fast : false
57
71
matrix :
58
- os : [ubuntu-latest, macos-13]
72
+ os :
73
+ - ubuntu-latest
74
+ - macos-latest
75
+ - macos-13
59
76
runs-on : ${{ matrix.os }}
60
77
steps :
61
78
- uses : actions/checkout@v4
65
82
66
83
installer-options :
67
84
strategy :
85
+ fail-fast : false
68
86
matrix :
69
- os : [ubuntu-latest, macos-13]
87
+ os :
88
+ - ubuntu-latest
89
+ # - macos-latest missing installer for aarch64-darwin
90
+ - macos-13
70
91
runs-on : ${{ matrix.os }}
71
92
steps :
72
93
- uses : actions/checkout@v4
@@ -80,8 +101,12 @@ jobs:
80
101
81
102
oldest-supported-installer :
82
103
strategy :
83
- matrix :
84
- os : [ubuntu-latest, macos-13]
104
+ fail-fast : false
105
+ matrix :
106
+ os :
107
+ - ubuntu-latest
108
+ - macos-latest
109
+ - macos-13
85
110
runs-on : ${{ matrix.os }}
86
111
steps :
87
112
- uses : actions/checkout@v4
94
119
95
120
act-support :
96
121
strategy :
97
- matrix :
98
- os : [ubuntu-latest]
122
+ matrix :
123
+ os : [ubuntu-latest]
99
124
runs-on : ${{ matrix.os }}
100
125
steps :
101
126
- uses : actions/checkout@v4
0 commit comments