File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 25
25
LLVM_CONFIG_PATH : llvm-config-10
26
26
27
27
jobs :
28
+ required :
29
+ name : Required
30
+ needs :
31
+ - ci
32
+ - check
33
+ runs-on : ubuntu-20.04
34
+ steps :
35
+ - name : Check results
36
+ run : |
37
+ [[ ${{ needs.ci.result }} == 'success' ]] || exit 1;
38
+ [[ ${{ needs.check.result }} == 'success' ]] || exit 1;
39
+
28
40
ci :
29
41
name : CI
30
42
strategy :
75
87
php-fpm --version
76
88
php-config || true
77
89
78
- [[ `php --version` == PHP\ ${{ matrix.php-version }}.* ]]
79
- [[ `php-fpm --version` == PHP\ ${{ matrix.php-version }}.* ]]
80
- [[ `php-config --version` == ${{ matrix.php-version }}.* ]]
90
+ [[ `php --version` == PHP\ ${{ matrix.php-version }}.* ]] || exit 1;
91
+ [[ `php-fpm --version` == PHP\ ${{ matrix.php-version }}.* ]] || exit 1;
92
+ [[ `php-config --version` == ${{ matrix.php-version }}.* ]] || exit 1;
81
93
82
94
- name : Install Rust Nightly
83
95
uses : actions-rs/toolchain@v1
You can’t perform that action at this time.
0 commit comments