6 name: ${{ matrix.config.name }} ${{ matrix.binaries }}
7 runs-on: ${{ matrix.config.os }}
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 }}
18 - name: Ubuntu 20.04 GCC
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 13 Apple Clang
33 - name: Windows 2022 Mingw-w64 GCC x86_64
42 sde: /d/a/Stockfish/Stockfish/.output/sde-temp-files/sde-external-9.14.0-2022-10-25-win/sde.exe -future --
55 - binaries: x86-64-avxvnni
56 config: { ubuntu-20.04 }
58 config: { os: windows-2022}
60 config: { os: macos-13 }
61 - binaries: x86-64-avxvnni
62 config: { os: macos-13 }
63 - binaries: x86-64-avx512
64 config: { os: macos-13 }
65 - binaries: x86-64-vnni256
66 config: { os: macos-13 }
67 - binaries: x86-64-vnni512
68 config: { os: macos-13 }
71 working-directory: src
72 shell: ${{ matrix.config.shell }}
74 - uses: actions/checkout@v3
78 - name: Download required Linux packages
79 if: runner.os == 'Linux'
82 sudo apt install g++-multilib g++-11-multilib
84 - name: Download required macOS packages
85 if: runner.os == 'macOS'
86 run: brew install coreutils
88 - name: Install fixed GCC on Linux
89 if: runner.os == 'Linux'
90 uses: egor-tensin/setup-gcc@v1
94 - name: Setup msys and install required packages
95 if: runner.os == 'Windows'
96 uses: msys2/setup-msys2@v2
98 msystem: ${{ matrix.config.msys_sys }}
99 install: mingw-w64-${{ matrix.config.msys_env }} make git zip
101 - name: Download SDE package
102 if: runner.os == 'Linux' || runner.os == 'Windows'
103 uses: petarpetrovt/setup-sde@v2.1
105 environmentVariableName: SDE_DIR
108 - name: Download the used network from the fishtest framework
111 - name: Extract the bench number from the commit history
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
116 [[ -n "$benchref" ]] && echo "benchref=$benchref" >> $GITHUB_ENV && echo "From commit: $hash" && echo "Reference bench: $benchref" || echo "No bench found"
118 - name: Check compiler
121 - name: Show g++ cpu info
122 if: runner.os != 'macOS'
123 run: g++ -Q -march=native --help=target
125 - name: Show clang++ cpu info
126 if: runner.os == 'macOS'
127 run: clang++ -E - -march=native -###
129 - name: Test help target
135 # Compile profile guided builds
137 - name: Compile ${{ matrix.binaries }} build
139 make -j2 profile-build ARCH=$BINARY COMP=$COMP WINE_PATH="$SDE"
140 make strip ARCH=$BINARY COMP=$COMP
141 WINE_PATH="$SDE" ../tests/signature.sh $benchref
142 mv ./stockfish$EXT ../stockfish-$NAME-$BINARY$EXT
144 - name: Remove non src files
147 - name: Download wiki
149 git clone https://github.com/official-stockfish/Stockfish.wiki.git ../wiki
152 - name: Create directory.
156 cp -r wiki stockfish/
158 cp stockfish-$NAME-$BINARY$EXT stockfish/
159 cp "Top CPU Contributors.txt" stockfish/
160 cp Copying.txt stockfish/
161 cp AUTHORS stockfish/
162 cp CITATION.cff stockfish/
163 cp README.md stockfish/
164 cp CONTRIBUTING.md stockfish/
167 if: runner.os != 'Windows'
170 tar -cvf stockfish-$NAME-$BINARY.tar stockfish
173 if: runner.os == 'Windows'
176 zip -r stockfish-$NAME-$BINARY.zip stockfish
178 - name: Upload binaries
179 if: runner.os != 'Windows'
180 uses: actions/upload-artifact@v3
182 name: stockfish-${{ matrix.config.os }}-${{ matrix.binaries }}
183 path: stockfish-${{ matrix.config.simple_name }}-${{ matrix.binaries }}.tar
185 # Artifacts automatically get zipped
186 # to avoid double zipping, we use the unzipped directory
187 - name: Upload binaries
188 if: runner.os == 'Windows'
189 uses: actions/upload-artifact@v3
191 name: stockfish-${{ matrix.config.os }}-${{ matrix.binaries }}
195 if: startsWith(github.ref_name, 'sf_') && github.ref_type == 'tag'
196 uses: softprops/action-gh-release@v1
198 files: stockfish-${{ matrix.config.simple_name }}-${{ matrix.binaries }}.${{ matrix.config.archive_ext }}
200 - name: Get last commit sha
202 run: echo "COMMIT_SHA=$(git rev-parse HEAD | cut -c 1-8)" >> $GITHUB_ENV
204 - name: Get commit date
206 run: echo "COMMIT_DATE=$(git show -s --date=format:'%Y%m%d' --format=%cd HEAD)" >> $GITHUB_ENV
208 # Make sure that an old ci which still runs on master doesn't recreate a prerelease
209 - name: Check Pullable Commits
213 CHANGES=$(git rev-list HEAD..origin/master --count)
214 echo "CHANGES=$CHANGES" >> $GITHUB_ENV
217 if: github.ref_name == 'master' && env.CHANGES == '0'
218 continue-on-error: true
219 uses: softprops/action-gh-release@v1
221 name: Stockfish dev-${{ env.COMMIT_DATE }}-${{ env.COMMIT_SHA }}
222 tag_name: stockfish-dev-${{ env.COMMIT_DATE }}-${{ env.COMMIT_SHA }}
224 files: stockfish-${{ matrix.config.simple_name }}-${{ matrix.binaries }}.${{ matrix.config.archive_ext }}