Skip to content

Commit

Permalink
Fix prepare as subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
pzehner committed Feb 28, 2024
1 parent e1eb8bd commit d46a952
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ jobs:
needs:
- check_docker_files
- build_base
- build

# run this job even if build_base did not run
if: ${{ ! cancelled() && (needs.build_base.result == 'success' || needs.build_base.result == 'skipped') }}
Expand Down Expand Up @@ -269,9 +270,9 @@ jobs:
- name: Prepare as subdirectory
run: |
# prepare kokkos
rsync -a ./tpls/kokkos ./install_test/as_subdirectory/tpls/
git clone ./tpls/kokkos ./install_test/as_subdirectory/kokkos
# prepare kokkos-fft
rsync --exclude install_test --exclude tpls --mkpath -a . ./install_test/as_subdirectory/tpls/kokkos-fft
git clone . ./install_test/as_subdirectory/kokkos-fft
- name: Configure and build test project as subdirectory
run: |
Expand Down

0 comments on commit d46a952

Please sign in to comment.