]> git.sesse.net Git - stockfish/blob - .github/workflows/stockfish_binaries.yml
CI workflows, install git on windows
[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: sudo apt update
60
61       - name: Setup msys and install required packages
62         if: runner.os == 'Windows'
63         uses: msys2/setup-msys2@v2
64         with:
65           msystem: ${{ matrix.config.msys_sys }}
66           install: mingw-w64-${{ matrix.config.msys_env }} make git
67
68       - name: Download the used network from the fishtest framework
69         run: make net
70
71       - name: Check compiler
72         run: $COMPILER -v
73
74       - name: Test help target
75         run: make help
76
77       - name: Check git
78         run: git --version
79
80       # Compile profile guided builds
81
82       - name: Compile ${{ matrix.binaries }} build
83         run: |
84           make clean
85           make -j2 profile-build ARCH=$BINARY COMP=$COMP
86           make strip ARCH=$BINARY COMP=$COMP
87           mv ./stockfish$EXT ../stockfish-$OS-$BINARY$EXT
88
89       - name: Remove non src files
90         run: rm -f *.o .depend *.nnue
91
92       - name: Create tar archive.
93         run: |
94           cd ..
95           mkdir stockfish
96           cp -r src stockfish/
97           cp stockfish-$OS-$BINARY$EXT stockfish/
98           cp "Top CPU Contributors.txt" stockfish/
99           cp Copying.txt stockfish/
100           cp AUTHORS stockfish/
101           tar -cvf stockfish-$OS-$BINARY.tar stockfish
102
103       - name: Upload binaries
104         uses: actions/upload-artifact@v3
105         with:
106           name: stockfish-${{ matrix.config.os }}-${{ matrix.binaries }}
107           path: stockfish-${{ matrix.config.os }}-${{ matrix.binaries }}.tar