]> git.sesse.net Git - stockfish/blob - .github/workflows/stockfish_binaries.yml
Change versioning and save binaries as CI artifacts
[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       OS: ${{ matrix.config.os }}
13       BINARY: ${{ matrix.binaries }}
14     strategy:
15       matrix:
16         config:
17           - {
18               name: "Ubuntu 20.04 GCC",
19               os: ubuntu-20.04,
20               compiler: g++,
21               comp: gcc,
22               shell: 'bash {0}'
23             }
24           - {
25               name: "MacOS 12 Apple Clang",
26               os: macos-12,
27               compiler: clang++,
28               comp: clang,
29               shell: 'bash {0}'
30             }
31           - {
32               name: "Windows 2022 Mingw-w64 GCC x86_64",
33               os: windows-2022,
34               compiler: g++,
35               comp: mingw,
36               msys_sys: 'mingw64',
37               msys_env: 'x86_64-gcc',
38               shell: 'msys2 {0}',
39               ext: .exe
40             }
41         binaries:
42           - x86-64
43           - x86-64-modern
44           - x86-64-avx2
45         exclude:
46           - binaries: x86-64-avx2
47             config: {os: macos-12}
48     defaults:
49       run:
50         working-directory: src
51         shell: ${{ matrix.config.shell }}
52     steps:
53       - uses: actions/checkout@v3
54         with:
55           fetch-depth: 0
56
57       - name: Download required linux packages
58         if: runner.os == 'Linux'
59         run: |
60           sudo apt update
61
62       - name: Setup msys and install required packages
63         if: runner.os == 'Windows'
64         uses: msys2/setup-msys2@v2
65         with:
66           msystem: ${{matrix.config.msys_sys}}
67           install: mingw-w64-${{matrix.config.msys_env}} make git expect
68
69       - name: Download the used network from the fishtest framework
70         run: |
71           make net
72
73       - name: Check compiler
74         run: |
75           export PATH=$PATH:$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin
76           $COMPILER -v
77
78       - name: Test help target
79         run: |
80           make help
81
82       # Compile profile guided builds
83
84       - name: Compile ${{ matrix.binaries }} build
85         run: |
86           make clean
87           make -j2 profile-build ARCH=$BINARY COMP=$COMP
88           strip ./stockfish$EXT
89           mv ./stockfish$EXT ../stockfish-$OS-$BINARY$EXT
90
91       - name: Remove non src files
92         run: rm -f *.o .depend *.nnue
93
94       - name: Create tar archive.
95         run: |
96           cd ..
97           mkdir stockfish
98           cp -r src stockfish/
99           cp stockfish-$OS-$BINARY$EXT stockfish/
100           cp "Top CPU Contributors.txt" stockfish/
101           cp Copying.txt stockfish/
102           cp AUTHORS stockfish/
103           tar -cvf stockfish-$OS-$BINARY.tar stockfish
104
105       - name: Upload binaries
106         uses: actions/upload-artifact@v3
107         with:
108           name: stockfish-${{ matrix.config.os }}-${{ matrix.binaries }}
109           path: |
110             stockfish-${{ matrix.config.os }}-${{ matrix.binaries }}.tar