faiss/.github/workflows/build.yml
Ramil Bakhshyiev 7e1d2b1f55 Initial config and linux-x86_64-cmake build job only
Summary:
This commit is the first in a series in an attempt to incrementally enable all jobs currenlty performed by CircleCI. It includes the main configuration files provided by GitHub team + 1 build.

Original PR: https://github.com/facebookresearch/faiss/pull/3325

Reviewed By: junjieqi

Differential Revision: D56671582

fbshipit-source-id: c8a21cd69aabaf86134eb86753e90b1facf51bc3
2024-04-29 10:48:52 -07:00

20 lines
338 B
YAML

name: Build
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
tags:
- 'v*'
env:
OMP_NUM_THREADS: '10'
MKL_THREADING_LAYER: GNU
jobs:
linux-x86_64-cmake:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- uses: ./.github/actions/build_cmake