[github-action] check with cmake version 3.10 (#5229)

This commit is contained in:
Yakun Xu
2020-07-13 08:22:00 -07:00
committed by GitHub
parent 32a3bef6dd
commit b9a7903f19
4 changed files with 20 additions and 6 deletions
+13
View File
@@ -56,6 +56,19 @@ jobs:
run: |
script/make-pretty check
cmake-version:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Bootstrap
run: |
sudo pip3 install --system -U cmake==3.10.3
cmake --version | grep 3.10.3
sudo apt-get --no-install-recommends install -y ninja-build libreadline-dev libncurses-dev
- name: Build
run: |
NODE_MODE=rcp ./script/test build
package:
name: package-${{ matrix.compiler }}
runs-on: ubuntu-18.04