Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
perarnau committed Sep 17, 2024
1 parent 252fa05 commit 9779190
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- run: make
- run: make check
- run: make install
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: generic
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
working-directory: out
- run: make check
working-directory: out
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: out-of-tree
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
HWLOC_CPUID_PATH: ${{ github.workspace }}/cpuid
VALGRIND_SUPPRESSIONS_FILES: ${{ github.workspace }}/.valgrind.supp
OMP_NUM_THREADS: 1
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: valgrind
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
HWLOC_CPUID_PATH: ${{ github.workspace }}/cpuid
VALGRIND_SUPPRESSIONS_FILES: ${{ github.workspace }}/.valgrind.supp
OMP_NUM_THREADS: 1
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: valgrind
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
mkdir build
./configure --prefix=`pwd`/build --without-rocm
- run: make distcheck
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: distcheck
Expand All @@ -173,7 +173,7 @@ jobs:
- run: make CFLAGS=-std=c99
- run: make check
- run: make install
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: rocm
Expand All @@ -184,7 +184,9 @@ jobs:
doc/tutorials/*.log
nvhpc:
runs-on: ubuntu-latest
container: nvcr.io/nvidia/nvhpc:24.7-devel-cuda12.5-ubuntu22.04
container:
image: nvcr.io/nvidia/nvhpc:24.7-devel-cuda12.5-ubuntu22.04
steps:
- uses: actions/checkout@v2
with:
submodules: true
Expand All @@ -200,7 +202,7 @@ jobs:
- run: make CFLAGS=-std=c99
- run: make check
- run: make install
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: rocm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
export LD_LIBRARY_PATH=$GITHUB_WORKSPACE/$INSTALL_PATH/lib:$LD_LIBRARY_PATH
cd xsbench/openmp-threading
test -n "$(./XSBench -s small | grep 'Verification checksum' | grep -i valid)"
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: generic
Expand Down

0 comments on commit 9779190

Please sign in to comment.