Skip to content

Commit

Permalink
Fix execution rights and singularity image name
Browse files Browse the repository at this point in the history
  • Loading branch information
pzehner committed Jan 24, 2024
1 parent 2406529 commit 61fa461
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
run: singularity build base_${{ matrix.backend }}.sif docker://ghcr.io/cexa-project/kokkos-fft/base_${{ matrix.backend }}

- name: Push Singularity image
run: singularity push base_${{ matrix.backend }}.sif oras://ghcr.io/cexa-project/kokkos-fft
run: singularity push base_${{ matrix.backend }}.sif oras://ghcr.io/cexa-project/kokkos-fft/base_${{ matrix.backend }}.sif

build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -138,11 +138,15 @@ jobs:
docker run -v ${{github.workspace}}:/work ghcr.io/cexa-project/kokkos-fft/base_${{ matrix.backend.name }} \
cmake --build build -j 2
- name: Prepare artifacts
# this is mandatory to preserve execution rights
run: tar -cvf tests_${{ matrix.backend.name }}.tar build/

- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: tests_${{ matrix.backend.name }}
path: build
path: tests_${{ matrix.backend.name }}.tar

- name: Install
run: |
Expand Down

0 comments on commit 61fa461

Please sign in to comment.