Skip to content

Missing header <algorithm> #21

Missing header <algorithm>

Missing header <algorithm> #21

name: Ubuntu No CPUID Environment Variable
on:
push:
branches: [master, static]
pull_request:
branches: [master, static]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: |
cmake -E make_directory build
cd build
cmake -DINTGEMM_CPUID_ENVIRONMENT=OFF ..
- name: Compile
working-directory: build
run: cmake --build . -j2
- name: Test
working-directory: build
run: ctest -j2