Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ubuntu-no-cpuid-environment.yml « workflows « .github - github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc1862fd6df9b1bcdab03287c25701f2c3f6a557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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