]> git.sesse.net Git - stockfish/blob - .github/workflows/stockfish_binaries.yml
Deprecate the x86-64-modern arch
[stockfish] / .github / workflows / stockfish_binaries.yml
1 name: Stockfish
2 on:
3   workflow_call:
4 jobs:
5   Stockfish:
6     name: ${{ matrix.config.name }} ${{ matrix.binaries }}
7     runs-on: ${{ matrix.config.os }}
8     env:
9       COMPILER: ${{ matrix.config.compiler }}
10       COMP: ${{ matrix.config.comp }}
11       EXT: ${{ matrix.config.ext }}
12       SDE: ${{ matrix.config.sde }}
13       NAME: ${{ matrix.config.simple_name }}
14       BINARY: ${{ matrix.binaries }}
15     strategy:
16       matrix:
17         config:
18           - name: Ubuntu 20.04 GCC
19             os: ubuntu-20.04
20             simple_name: ubuntu
21             compiler: g++
22             comp: gcc
23             shell: bash
24             archive_ext: tar
25             sde: /home/runner/work/Stockfish/Stockfish/.output/sde-temp-files/sde-external-9.14.0-2022-10-25-lin/sde -future --
26           - name: MacOS 12 Apple Clang
27             os: macos-12
28             simple_name: macos
29             compiler: clang++
30             comp: clang
31             shell: bash
32             archive_ext: tar
33           - name: Windows 2022 Mingw-w64 GCC x86_64
34             os: windows-2022
35             simple_name: windows
36             compiler: g++
37             comp: mingw
38             msys_sys: mingw64
39             msys_env: x86_64-gcc
40             shell: msys2 {0}
41             ext: .exe
42             sde: /d/a/Stockfish/Stockfish/.output/sde-temp-files/sde-external-9.14.0-2022-10-25-win/sde.exe -future --
43             archive_ext: zip
44         binaries:
45           - x86-32
46           - x86-64
47           - x86-64-sse41-popcnt
48           - x86-64-avx2
49           - x86-64-bmi2
50           - x86-64-avxvnni
51           - x86-64-avx512
52           - x86-64-vnni256
53           - x86-64-vnni512
54         exclude:
55           - binaries: x86-32
56             config: { os: macos-12 }
57           - binaries: x86-32
58             config: { os: windows-2022}
59           - binaries: x86-64-avx2
60             config: { os: macos-12 }
61           - binaries: x86-64-bmi2
62             config: { os: macos-12 }
63           - binaries: x86-64-avxvnni
64             config: { os: macos-12 }
65           - binaries: x86-64-avxvnni
66             config: { ubuntu-20.04 }
67           - binaries: x86-64-avx512
68             config: { os: macos-12 }
69           - binaries: x86-64-vnni256
70             config: { os: macos-12 }
71           - binaries: x86-64-vnni512
72             config: { os: macos-12 }
73     defaults:
74       run:
75         working-directory: src
76         shell: ${{ matrix.config.shell }}
77     steps:
78       - uses: actions/checkout@v3
79         with:
80           fetch-depth: 0
81
82       - name: Download required Linux packages
83         if: runner.os == 'Linux'
84         run: |
85           sudo apt update
86           sudo apt install g++-multilib g++-11-multilib
87
88       - name: Install fixed GCC on Linux
89         if: runner.os == 'Linux'
90         uses: egor-tensin/setup-gcc@v1
91         with:
92           version: 11
93
94       - name: Setup msys and install required packages
95         if: runner.os == 'Windows'
96         uses: msys2/setup-msys2@v2
97         with:
98           msystem: ${{ matrix.config.msys_sys }}
99           install: mingw-w64-${{ matrix.config.msys_env }} make git zip
100
101       - name: Download SDE package
102         if: runner.os == 'Linux' || runner.os == 'Windows'
103         uses: petarpetrovt/setup-sde@v2.1
104         with:
105           environmentVariableName: SDE_DIR
106           sdeVersion: 9.14.0
107
108       - name: Download the used network from the fishtest framework
109         run: make net
110
111       - name: Extract the bench number from the commit history
112         run: |
113           for hash in $(git rev-list -100 HEAD); do
114             benchref=$(git show -s $hash | tac | grep -m 1 -o -x '[[:space:]]*\b[Bb]ench[ :]\+[1-9][0-9]\{5,7\}\b[[:space:]]*' | sed 's/[^0-9]//g') && break || true
115           done
116           [[ -n "$benchref" ]] && echo "benchref=$benchref" >> $GITHUB_ENV && echo "From commit: $hash" && echo "Reference bench: $benchref" || echo "No bench found"
117
118       - name: Check compiler
119         run: $COMPILER -v
120
121       - name: Test help target
122         run: make help
123
124       - name: Check git
125         run: git --version
126
127       # Compile profile guided builds
128
129       - name: Compile ${{ matrix.binaries }} build
130         run: |
131           make -j2 profile-build ARCH=$BINARY COMP=$COMP WINE_PATH="$SDE"
132           make strip ARCH=$BINARY COMP=$COMP
133           WINE_PATH="$SDE" ../tests/signature.sh $benchref
134           mv ./stockfish$EXT ../stockfish-$NAME-$BINARY$EXT
135
136       - name: Remove non src files
137         run: git clean -fx
138
139       - name: Download wiki
140         run: |
141           git clone https://github.com/official-stockfish/Stockfish.wiki.git ../wiki
142           rm -rf ../wiki/.git
143
144       - name: Create directory.
145         run: |
146           cd ..
147           mkdir stockfish
148           cp -r wiki stockfish/
149           cp -r src stockfish/
150           cp stockfish-$NAME-$BINARY$EXT stockfish/
151           cp "Top CPU Contributors.txt" stockfish/
152           cp Copying.txt stockfish/
153           cp AUTHORS stockfish/
154           cp CITATION.cff stockfish/
155           cp README.md stockfish/
156
157       - name: Create tar
158         if: runner.os != 'Windows'
159         run: |
160           cd ..
161           tar -cvf stockfish-$NAME-$BINARY.tar stockfish
162
163       - name: Create zip
164         if: runner.os == 'Windows'
165         run: |
166           cd ..
167           zip -r stockfish-$NAME-$BINARY.zip stockfish
168
169       - name: Upload binaries
170         if: runner.os != 'Windows'
171         uses: actions/upload-artifact@v3
172         with:
173           name: stockfish-${{ matrix.config.os }}-${{ matrix.binaries }}
174           path: stockfish-${{ matrix.config.simple_name }}-${{ matrix.binaries }}.tar
175
176       # Artifacts automatically get zipped
177       # to avoid double zipping, we use the unzipped directory
178       - name: Upload binaries
179         if: runner.os == 'Windows'
180         uses: actions/upload-artifact@v3
181         with:
182           name: stockfish-${{ matrix.config.os }}-${{ matrix.binaries }}
183           path: stockfish
184
185       - name: Release
186         if: startsWith(github.ref_name, 'sf_') && github.ref_type == 'tag'
187         uses: softprops/action-gh-release@v1
188         with:
189           files: stockfish-${{ matrix.config.simple_name }}-${{ matrix.binaries }}.${{ matrix.config.archive_ext }}
190
191       - name: Get last commit sha
192         id: last_commit
193         run: echo "COMMIT_SHA=$(git rev-parse HEAD | cut -c 1-8)" >> $GITHUB_ENV
194
195       - name: Get commit date
196         id: commit_date
197         run: echo "COMMIT_DATE=$(git show -s --date=format:'%Y%m%d' --format=%cd HEAD)" >> $GITHUB_ENV
198
199       # Make sure that an old ci which still runs on master doesn't recreate a prerelease
200       - name: Check Pullable Commits
201         id: check_commits
202         run: |
203           git fetch
204           CHANGES=$(git rev-list HEAD..origin/master --count)
205           echo "CHANGES=$CHANGES" >> $GITHUB_ENV
206
207       - name: Prerelease
208         if: github.ref_name == 'master' && env.CHANGES == '0'
209         continue-on-error: true
210         uses: softprops/action-gh-release@v1
211         with:
212           name: Stockfish dev-${{ env.COMMIT_DATE }}-${{ env.COMMIT_SHA }}
213           tag_name: stockfish-dev-${{ env.COMMIT_DATE }}-${{ env.COMMIT_SHA }}
214           prerelease: true
215           files: stockfish-${{ matrix.config.simple_name }}-${{ matrix.binaries }}.${{ matrix.config.archive_ext }}