File tree 1 file changed +41
-17
lines changed
1 file changed +41
-17
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,14 @@ permissions:
12
12
contents : read
13
13
14
14
jobs :
15
- self-built-v8 :
15
+ self-built-v8-cache-warmup :
16
16
strategy :
17
17
matrix :
18
- operating-system :
18
+ operating-system : # &self-built-v8-operating-systems
19
19
- ubuntu-latest
20
20
# - windows-latest
21
21
- macos-latest
22
- php-versions :
23
- # - '8.1'
24
- - ' 8.2'
25
- - ' 8.3'
26
- - ' 8.4'
27
- v8-versions :
22
+ v8-versions : # &self-built-v8-v8-versions
28
23
- 10.9.194
29
24
# - 11.9.172
30
25
- 12.9.203
33
28
runs-on : ${{ matrix.operating-system }}
34
29
35
30
steps :
36
- - name : Checkout code
37
- uses : actions/checkout@v2
38
-
39
- - name : Setup PHP
40
- uses : shivammathur/setup-php@v2
41
- with :
42
- php-version : ${{ matrix.php-versions }}
43
- coverage : none
44
-
45
31
- name : Restore cache v8 ${{ matrix.v8-versions }} build
46
32
id : v8-build-cache
47
33
uses : actions/cache/restore@v4
88
74
path : /opt/v8/self-built
89
75
key : ${{ steps.v8-build-cache.outputs.cache-primary-key }}
90
76
77
+ self-built-v8 :
78
+ needs : self-built-v8-cache-warmup
79
+
80
+ strategy :
81
+ matrix :
82
+ operating-system : # *self-built-v8-operating-systems
83
+ - ubuntu-latest
84
+ # - windows-latest
85
+ - macos-latest
86
+ v8-versions : # *self-built-v8-v8-versions
87
+ - 10.9.194
88
+ # - 11.9.172
89
+ - 12.9.203
90
+ # - 13.1.104
91
+ php-versions :
92
+ # - '8.1'
93
+ - ' 8.2'
94
+ - ' 8.3'
95
+ - ' 8.4'
96
+
97
+ runs-on : ${{ matrix.operating-system }}
98
+
99
+ steps :
100
+ - name : Checkout code
101
+ uses : actions/checkout@v2
102
+
103
+ - name : Setup PHP
104
+ uses : shivammathur/setup-php@v2
105
+ with :
106
+ php-version : ${{ matrix.php-versions }}
107
+ coverage : none
108
+
109
+ - name : Download cache v8 ${{ matrix.v8-versions }} build
110
+ uses : actions/cache/restore@v4
111
+ with :
112
+ path : /opt/v8/self-built
113
+ key : ${{ runner.os }}-${{ matrix.v8-versions }}-v8-build
114
+
91
115
- name : Build extension
92
116
run : |
93
117
phpize
You can’t perform that action at this time.
0 commit comments