Skip to content

- ふかうら王、MultiPVのときにnodes数の出力が、その指し手の訪問数になっている仕様を変更することにした。 #1080

- ふかうら王、MultiPVのときにnodes数の出力が、その指し手の訪問数になっている仕様を変更することにした。

- ふかうら王、MultiPVのときにnodes数の出力が、その指し手の訪問数になっている仕様を変更することにした。 #1080

Workflow file for this run

# for Android environment
name: NDK CI (for Android)
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
build-android:
# ubuntu-latest = ubuntu-20.04
# https://docs.github.com/ja/actions/using-github-hosted-runners/about-github-hosted-runners
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md
runs-on: ubuntu-20.04
strategy:
matrix:
edition:
- YANEURAOU_ENGINE_NNUE
- YANEURAOU_ENGINE_KPPT
- YANEURAOU_ENGINE_KPP_KKPT
- YANEURAOU_ENGINE_MATERIAL
- YANEURAOU_MATE_ENGINE
- TANUKI_MATE_ENGINE
- USER_ENGINE
steps:
# https://developer.android.com/ndk/downloads?hl=ja#stable-downloads
- name: Setup Android NDK r23b
uses: nttld/setup-ndk@v1
with:
ndk-version: r23b
# ⇨ Android r27では32bitサポートが終了したんじゃないかな、もしかして。
# 32bit向けにビルドのテスト自体はやりたいのでAndroid r23bに戻そっと…😢
- name: Checkout own repository
uses: actions/checkout@v2
with:
path: main
- name: ndk-build
run: ./main/script/android_build.sh -e ${{ matrix.edition }}
# - uses: actions/upload-artifact@v4
# with:
# name: build-android_${{ github.run_number }}_${{ matrix.edition }}_${{ github.sha }}
# path: ./main/build/**/*