Skip to content

Commit

Permalink
ci: debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson committed Jun 5, 2024
1 parent 7a4784e commit 77dd30a
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/linux-compileonly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@ jobs:
container:
image: nvidia/cuda:11.7.1-devel-ubuntu22.04
env:
ROOT: /opt/workspace
KOKKOS_SRC: /opt/workspace/_deps/kokkos
KOKKOS_BUILD: /opt/workspace/_deps/kokkos-build
KOKKOS_INSTALL: /opt/workspace/_deps/kokkos-install
COMM_SRC: /opt/workspace
COMM_BUILD: /opt/workspace/build
KOKKOS_SRC: ${{ github.workspace }}/_deps/kokkos
KOKKOS_BUILD: ${{ github.workspace }}/_deps/kokkos-build
KOKKOS_INSTALL: ${{ github.workspace }}/_deps/kokkos-install
COMM_SRC: ${{ github.workspace }}
COMM_BUILD: ${{ github.workspace }}/build
timeout-minutes: 20
steps:
- name: Create workspace
run: mkdir -p $ROOT
run: mkdir -p ${{ github.workspace }}
- name: Install packages
run: |
apt-get update && apt-get install -y cmake wget git
Expand Down

0 comments on commit 77dd30a

Please sign in to comment.