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

intel-19.yml « workflows « .github - github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67daf490592cb8bfe38f78f33db3c704b1a57637 (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
26
27
name: Intel 19.1 

on:
  push:
    branches: [master, static]
  pull_request:
    branches: [master, static]

jobs:
  build:
    runs-on: self-hosted

    steps:
    - uses: actions/checkout@v2
    - name: environment
      run: source /opt/intel/bin/compilervars.sh intel64 
    - name: cmake
      run: |
        mkdir -p build
        cd build
        cmake  -DCMAKE_C_COMPILER=icc -DCMAKE_CXX_COMPILER=icpc -DCMAKE_BUILD_TYPE=Debug ..
    - name: Compile
      working-directory: build
      run: make -j2
    - name: Test
      working-directory: build
      run: ctest -j2