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 2525 LLVM_CONFIG_PATH : llvm-config-10
2626
2727jobs :
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+
2840 ci :
2941 name : CI
3042 strategy :
7587 php-fpm --version
7688 php-config || true
7789
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;
8193
8294 - name : Install Rust Nightly
8395 uses : actions-rs/toolchain@v1
You can’t perform that action at this time.
0 commit comments