Skip to content

Commit

Permalink
Merge pull request #24 from robandpdx-org/convert-circleci-to-github-…
Browse files Browse the repository at this point in the history
…actions

do it
  • Loading branch information
robandpdx authored Mar 27, 2024
2 parents fd9919e + 413b728 commit 41fb0db
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
uses: actions/[email protected]
- uses: ./.github/actions/build_conda
linux-x86_64-packages:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v*')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -100,7 +100,7 @@ jobs:
with:
label: main
linux-x86_64-GPU-packages-CUDA-11-4-4:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v*')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: 4-core-gpu
steps:
- name: Checkout
Expand All @@ -112,7 +112,7 @@ jobs:
cuda_archs: "60-real;61-real;62-real;70-real;72-real;75-real;80;86-real"
compiler_version: "11.2"
linux-x86_64-GPU-RAFT-packages-CUDA11-8-0:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v*')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: 4-core-gpu
steps:
- name: Checkout
Expand All @@ -125,7 +125,7 @@ jobs:
cuda_archs: "70-real;72-real;75-real;80;86-real"
compiler_version: "11.2"
linux-x86_64-GPU-packages-CUDA-12-1-1:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v*')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: 4-core-gpu
steps:
- name: Checkout
Expand All @@ -137,7 +137,7 @@ jobs:
cuda_archs: "70-real;72-real;75-real;80;86-real"
compiler_version: "11.2"
linux-x86_64-GPU-RAFT-packages-CUDA12-1-1:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v*')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: 4-core-gpu
steps:
- name: Checkout
Expand All @@ -150,7 +150,7 @@ jobs:
cuda_archs: "70-real;72-real;75-real;80;86-real"
compiler_version: "11.2"
windows-x86_64-packages:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v*')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: windows-latest
steps:
- name: Checkout
Expand All @@ -159,7 +159,7 @@ jobs:
with:
label: main
OSX-arm64-packages:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v*')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: macos-13
steps:
- name: Checkout
Expand All @@ -168,7 +168,7 @@ jobs:
with:
label: main
linux-arm64-packages:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v*')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: 4-core-arm
steps:
- name: Checkout
Expand Down

0 comments on commit 41fb0db

Please sign in to comment.