Skip to content

Commit

Permalink
Test gpu build, isolating CMake steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ramilbakhshyiev committed May 3, 2024
1 parent 980114e commit 04acc4c
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,20 @@ env:
OMP_NUM_THREADS: '10'
MKL_THREADING_LAYER: GNU
jobs:
linux-x86_64-packages:
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
# with:
# label: main
windows-x86_64-packages:
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: windows-2019
steps:
- name: Checkout
Expand All @@ -20,5 +33,17 @@ jobs:
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
# with:
# label: main
linux-arm64-packages:
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: 4-core-arm
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
label: main
fetch-depth: 0
fetch-tags: true
- uses: ./.github/actions/build_conda
# with:
# label: main

0 comments on commit 04acc4c

Please sign in to comment.