Skip to content

Commit

Permalink
Add human readable names to PR build steps (#3739)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #3739

Reviewed By: mengdilin

Differential Revision: D60978686

fbshipit-source-id: 28a886eaea8f1d2e75f5115fc7035e0b6e555ae0
  • Loading branch information
ramilbakhshyiev authored and facebook-github-bot committed Aug 8, 2024
1 parent c669357 commit 01317af
Showing 1 changed file with 36 additions and 18 deletions.
54 changes: 36 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build_cmake
- name: Build and Test (cmake)
uses: ./.github/actions/build_cmake
linux-x86_64-AVX2-cmake:
name: Linux x86_64 AVX2 (cmake)
needs: linux-x86_64-cmake
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build_cmake
- name: Build and Test (cmake)
uses: ./.github/actions/build_cmake
with:
opt_level: avx2
linux-x86_64-AVX512-cmake:
Expand All @@ -61,7 +63,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build_cmake
- name: Build and Test (cmake)
uses: ./.github/actions/build_cmake
with:
opt_level: avx512
linux-x86_64-GPU-cmake:
Expand All @@ -71,7 +74,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build_cmake
- name: Build and Test (cmake)
uses: ./.github/actions/build_cmake
with:
gpu: ON
linux-x86_64-GPU-w-RAFT-cmake:
Expand All @@ -81,7 +85,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build_cmake
- name: Build and Test (cmake)
uses: ./.github/actions/build_cmake
with:
gpu: ON
raft: ON
Expand All @@ -92,7 +97,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build_cmake
- name: Build and Test (cmake)
uses: ./.github/actions/build_cmake
with:
gpu: ON
rocm: ON
Expand All @@ -103,7 +109,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build_cmake
- name: Build and Test (cmake)
uses: ./.github/actions/build_cmake
with:
opt_level: sve
linux-x86_64-conda:
Expand All @@ -116,7 +123,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
windows-x86_64-conda:
name: Windows x86_64 (conda)
needs: linux-x86_64-cmake
Expand All @@ -127,7 +135,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
linux-arm64-conda:
name: Linux arm64 (conda)
needs: linux-x86_64-cmake
Expand All @@ -138,7 +147,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
linux-x86_64-packages:
name: Linux x86_64 packages
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
Expand All @@ -149,7 +159,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
with:
label: main
linux-x86_64-GPU-packages-CUDA-11-4-4:
Expand All @@ -165,7 +176,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
with:
label: main
cuda: "11.4.4"
Expand All @@ -181,7 +193,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
with:
label: main
raft: "ON"
Expand All @@ -198,7 +211,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
with:
label: main
cuda: "12.1.1"
Expand All @@ -214,7 +228,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
with:
label: main
raft: "ON"
Expand All @@ -229,7 +244,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
with:
label: main
osx-arm64-packages:
Expand All @@ -242,7 +258,8 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
with:
label: main
linux-arm64-packages:
Expand All @@ -255,6 +272,7 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
- name: Build and Package (conda)
uses: ./.github/actions/build_conda
with:
label: main

0 comments on commit 01317af

Please sign in to comment.