diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85ce1aa4..bc0ba143 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -116,3 +116,35 @@ jobs: - run: make clang-release-ubsan - run: make test-clang-debug-ubsan - run: make test-clang-release-ubsan + + build-min-cmake: + name: min-cmake + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + with: + submodules: true + - uses: actions/setup-python@v1 + with: + python-version: '3.x' + - name: Install Ninja + run: sudo apt-get install ninja-build + - name: Detect minimum CMake version + run: > + awk 'match($0, /cmake_minimum_required\(VERSION *([0-9]+\.[0-9]+)\)/, a) + { print "WABT_CMAKE_VER=" a[1] }' CMakeLists.txt | tee $GITHUB_ENV + - name: Install minimum CMake + run: | + python -m pip install -U setuptools wheel pip + python -m pip install "cmake==${WABT_CMAKE_VER}.*" + cmake --version + - name: Configure WABT + run: cmake -G Ninja -S . -B out -DCMAKE_BUILD_TYPE=Release + - name: build + run: cmake --build out + - name: unittests + run: cmake --build out --target run-unittests + - name: c-api-tests + run: cmake --build out --target run-c-api-tests + - name: tests + run: cmake --build out --target run-tests |