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 4167de3 commit 3a65bd5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux-compileonly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
container:
image: nvidia/cuda:11.7.1-devel-ubuntu22.04
env:
GITHUB_WORKSPACE: ${{ github.workspace }} # I think checkout uses this variable, but it's not set in the container?
GITHUB_WORKSPACE: ${{ github.workspace }} # checkout says it checks out to this variable, but I don't think this variable is set in the container. So let's set it to be the same as the host workspace path and then we can later create it in the container
KOKKOS_SRC: ${{ github.workspace }}/_deps/kokkos
KOKKOS_BUILD: ${{ github.workspace }}/_deps/kokkos-build
KOKKOS_INSTALL: ${{ github.workspace }}/_deps/kokkos-install
Expand All @@ -21,9 +21,9 @@ jobs:
uses: actions/checkout@v4
- name: DEBUG - list
run: |
pwd
ls
ls ${{ github.workspace }}
echo 1 && pwd
echo 2 && ls
echo 3 && ls ${{ github.workspace }}
- name: Install packages
run: |
apt-get update && apt-get install -y cmake wget git
Expand Down

0 comments on commit 3a65bd5

Please sign in to comment.