Skip to content

Commit

Permalink
Changing CI to use on-demand runners
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Ragghianti committed Mar 18, 2024
1 parent 5b23aa5 commit d590c76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
maker: [make, cmake]
device: [cpu, gpu_nvidia, gpu_amd, gpu_intel]
fail-fast: false
runs-on: ${{ matrix.device }}
runs-on: slurm:${{ matrix.device }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure
run: .github/workflows/configure.sh ${{matrix.maker}} ${{matrix.device}}
- name: Build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ quiet which pkg-config
# CMake finds CUDA in /usr/local/cuda, so need to explicitly set gpu_backend.
export gpu_backend=none
export color=no

# Don't use `export CXXFLAGS` here because then that
# is exported to BLAS++ and it inherits the -D defines.

Expand Down

0 comments on commit d590c76

Please sign in to comment.