Browse Source

Update arm64_graviton.yml

pull/5012/head
Martin Kroeker GitHub 1 year ago
parent
commit
d2a1054ce8
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 9 deletions
  1. +12
    -9
      .github/workflows/arm64_graviton.yml

+ 12
- 9
.github/workflows/arm64_graviton.yml View File

@@ -119,15 +119,18 @@ jobs:
case "${{ matrix.build }}" in case "${{ matrix.build }}" in
"make") "make")
MAKE_FLAGS='DYNAMIC_ARCH=1 USE_OPENMP=0' MAKE_FLAGS='DYNAMIC_ARCH=1 USE_OPENMP=0'
echo "::group::Tests in 'test' directory"
make -C test $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
echo "::endgroup::"
echo "::group::Tests in 'ctest' directory"
make -C ctest $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
echo "::endgroup::"
echo "::group::Tests in 'utest' directory"
make -C utest $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
echo "::endgroup::"
wget https://gist.github.com/martin-frbg/96d2252fbb71d0d898ede14691b51657/raw/5c6a89cb1560dce50005dd8484483508fabc039f/issue4939.c
gcc -I. -O2 issue4939.c libopenblas.a -o issue4939
./issue4939
#echo "::group::Tests in 'test' directory"
#make -C test $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
#echo "::endgroup::"
#echo "::group::Tests in 'ctest' directory"
#make -C ctest $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
#echo "::endgroup::"
#echo "::group::Tests in 'utest' directory"
#make -C utest $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
#echo "::endgroup::"
;; ;;
"cmake") "cmake")
cd build && ctest cd build && ctest


Loading…
Cancel
Save