Skip to content

Commit

Permalink
Update runs-on
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Howe <bhowe@nvidia.com>
  • Loading branch information
bmhowe23 committed Jan 19, 2025
1 parent 9bb4b6c commit 6f24503
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: |
.github/workflows/scripts/build_cudaq.sh ${{ matrix.python }}
- name: Build wheels
- name: Build CUDA-QX wheels
run: |
.github/workflows/scripts/build_wheels.sh \
--cudaq-prefix $HOME/.cudaq \
Expand All @@ -97,7 +97,9 @@ jobs:
fail-fast: false
matrix:
platform: ['amd64', 'arm64']
runs-on: ${{ startsWith(github.repository, 'NVIDIA/cudaqx') && format('linux-{0}-cpu8', matrix.platform) || 'ubuntu-latest' }}
# Use 32 CPUs rather than 8 (above) because we are only spawning one job per
# platform rather than one job per Python version per platform.
runs-on: ${{ startsWith(github.repository, 'NVIDIA/cudaqx') && format('linux-{0}-cpu32', matrix.platform) || 'ubuntu-latest' }}
permissions:
actions: write
contents: read
Expand Down

0 comments on commit 6f24503

Please sign in to comment.