Adjust eval target for check counting variants #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: [ master, tools ] | |
pull_request: | |
branches: [ master, tools ] | |
jobs: | |
windows: | |
strategy: | |
matrix: | |
arch: ["x86-64-bmi2", "x86-64-modern", "x86-64"] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install mingw w64 | |
run: sudo apt install mingw-w64 | |
- name: make | |
run: cd src && make clean && make -j build COMP=mingw ARCH=${{ matrix.arch }} EXE=fairy-stockfish_${{ matrix.arch }}.exe && strip fairy-stockfish_${{ matrix.arch }}.exe | |
- name: make largeboards | |
run: cd src && make clean && make -j build COMP=mingw ARCH=${{ matrix.arch }} EXE=fairy-stockfish-largeboards_${{ matrix.arch }}.exe largeboards=yes && strip fairy-stockfish-largeboards_${{ matrix.arch }}.exe | |
- name: make all | |
if: ${{ matrix.arch == 'x86-64' }} | |
run: cd src && make clean && make -j build COMP=mingw ARCH=${{ matrix.arch }} EXE=fairy-stockfish-all_${{ matrix.arch }}.exe largeboards=yes all=yes && strip fairy-stockfish-all_${{ matrix.arch }}.exe | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: fairy-stockfish | |
path: src/fairy-stockfish*.exe | |
linux: | |
strategy: | |
matrix: | |
arch: ["x86-64-bmi2", "x86-64-modern", "x86-64"] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: make | |
run: cd src && make clean && make -j build COMP=gcc ARCH=${{ matrix.arch }} EXE=fairy-stockfish_${{ matrix.arch }} && strip fairy-stockfish_${{ matrix.arch }} | |
- name: make largeboards | |
run: cd src && make clean && make -j build COMP=gcc ARCH=${{ matrix.arch }} EXE=fairy-stockfish-largeboards_${{ matrix.arch }} largeboards=yes && strip fairy-stockfish-largeboards_${{ matrix.arch }} | |
- name: make all | |
if: ${{ matrix.arch == 'x86-64' }} | |
run: cd src && make clean && make -j build COMP=gcc ARCH=${{ matrix.arch }} EXE=fairy-stockfish-all_${{ matrix.arch }} largeboards=yes all=yes && strip fairy-stockfish-all_${{ matrix.arch }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: fairy-stockfish | |
path: src/fairy-stockfish* |