Skip to content

Commit

Permalink
[cicd] partial linalg support (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge authored Oct 20, 2022
1 parent 7c162c8 commit 23fa8d0
Show file tree
Hide file tree
Showing 8 changed files with 112 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/clang_tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/mdspan.git
mkdir mdspan/build
( cd mdspan/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/stdBLAS.git
mkdir stdBLAS/build
( cd stdBLAS/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
- name: Verify
run: |
FILES=`find . -iname *.hpp -o -iname *.tpp`
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,20 @@ jobs:
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/mdspan.git
mkdir mdspan/build
( cd mdspan/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/stdBLAS.git
mkdir stdBLAS/build
( cd stdBLAS/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
- name: Verify
run: |
cppcheck \
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/deploy_test_coverage_coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/mdspan.git
mkdir mdspan/build
( cd mdspan/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/stdBLAS.git
mkdir stdBLAS/build
( cd stdBLAS/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
- name: Build
run: |
gcc-12 \
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/verify_test_memory_valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/mdspan.git
mkdir mdspan/build
( cd mdspan/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/stdBLAS.git
mkdir stdBLAS/build
( cd stdBLAS/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
- name: Build
run: |
gcc-12 \
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/verify_test_sanitizer_address.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/mdspan.git
mkdir mdspan/build
( cd mdspan/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/stdBLAS.git
mkdir stdBLAS/build
( cd stdBLAS/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
- name: Build
run: |
gcc-12 \
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/verify_test_sanitizer_leak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/mdspan.git
mkdir mdspan/build
( cd mdspan/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/stdBLAS.git
mkdir stdBLAS/build
( cd stdBLAS/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
- name: Build
run: |
gcc-12 \
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/verify_test_sanitizer_thread.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/mdspan.git
mkdir mdspan/build
( cd mdspan/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/stdBLAS.git
mkdir stdBLAS/build
( cd stdBLAS/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
- name: Build
run: |
gcc-12 \
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/verify_test_sanitizer_undefined_behavior.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/mdspan.git
mkdir mdspan/build
( cd mdspan/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
( cd /tmp
git clone --depth 1 https://github.com/kokkos/stdBLAS.git
mkdir stdBLAS/build
( cd stdBLAS/build
cmake ..
cmake --build . --parallel
sudo cmake --install . ) )
- name: Build
run: |
gcc-12 \
Expand Down

0 comments on commit 23fa8d0

Please sign in to comment.