]> git.sesse.net Git - stockfish/blob - .github/workflows/stockfish.yml
Let CI check C++ includes
[stockfish] / .github / workflows / stockfish.yml
1 name: Stockfish
2 on:
3   push:
4     tags:        
5       - '*' 
6     branches:
7       - master
8       - tools
9       - github_ci
10   pull_request:
11     branches:
12       - master
13       - tools
14 jobs:
15   Prerelease:
16     if: github.ref == 'refs/heads/master'
17     runs-on: ubuntu-latest
18     steps:
19       # returns null if no pre-release exists
20       - name: Get Commit SHA of Latest Pre-release
21         run: |
22           # Install required packages
23           sudo apt-get update
24           sudo apt-get install -y curl jq
25
26           echo "COMMIT_SHA=$(jq -r 'map(select(.prerelease)) | first | .tag_name' <<< $(curl -s https://api.github.com/repos/${{ github.repository_owner }}/Stockfish/releases))" >> $GITHUB_ENV
27
28       # delete old previous pre-release and tag
29       - uses: dev-drprasad/delete-tag-and-release@v0.2.1
30         if: env.COMMIT_SHA != 'null'
31         with:
32           tag_name: ${{ env.COMMIT_SHA }}
33         env:
34           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
36   Analyzers:
37     uses: ./.github/workflows/stockfish_analyzers.yml
38   Sanitizers:
39     uses: ./.github/workflows/stockfish_sanitizers.yml
40   Tests:
41     uses: ./.github/workflows/stockfish_test.yml
42   Compiles:
43     uses: ./.github/workflows/stockfish_compile_test.yml
44   Binaries:
45     if: github.ref == 'refs/heads/master' || (startsWith(github.ref_name, 'sf_') && github.ref_type == 'tag')
46     uses: ./.github/workflows/stockfish_binaries.yml
47   ARM_Binaries:
48     if: github.ref == 'refs/heads/master' || (startsWith(github.ref_name, 'sf_') && github.ref_type == 'tag')
49     uses: ./.github/workflows/stockfish_arm_binaries.yml