Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cmake-linux-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
id: strings
run: |
echo "build-output-dir=${{github.workspace}}/build" >> "$GITHUB_OUTPUT"
echo "PATH=/home/cudeiro/cmake-4.2.1-linux-x86_64/bin/:$PATH" >> "$GITHUB_ENV"
echo "PATH=$HOME/cmake-4.2.1-linux-x86_64/bin/:$PATH" >> "$GITHUB_ENV"
echo "CUDACXX=/usr/local/cuda-${{matrix.cuda_toolkit}}/bin/nvcc" >> "$GITHUB_ENV"
echo "CC=${{matrix.host_compiler}}" >> "$GITHUB_ENV"
echo "CXX=${{matrix.host_compiler}}" >> "$GITHUB_ENV"
Expand Down
17 changes: 13 additions & 4 deletions .github/workflows/cmake-linux-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,30 @@ jobs:
include:
- host_compiler: "g++-11"
cuda_toolkit: "12.9"
cuda_ldpath: "cuda-12.9"
- host_compiler: "clang++-21"
cuda_toolkit: "12.9"
#
cuda_ldpath: "cuda-12.9"
- host_compiler: "g++-11"
cuda_toolkit: "13.2"
cuda_ldpath: "cuda-13.2/compat_orin"
- host_compiler: "clang++-21"
cuda_toolkit: "13.2"
cuda_ldpath: "cuda-13.2/compat_orin"

steps:
- uses: actions/checkout@v4
- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id: strings
run: |
echo "build-output-dir=${{github.workspace}}/build" >> "$GITHUB_OUTPUT"
echo "PATH=/home/cudeiro/cmake-4.2.1-linux-aarch64/bin/:$PATH" >> "$GITHUB_ENV"
echo "PATH=$HOME/cmake-4.2.1-linux-aarch64/bin/:$PATH" >> "$GITHUB_ENV"
echo "CUDACXX=/usr/local/cuda-${{matrix.cuda_toolkit}}/bin/nvcc" >> "$GITHUB_ENV"
echo "CC=${{matrix.host_compiler}}" >> "$GITHUB_ENV"
echo "CXX=${{matrix.host_compiler}}" >> "$GITHUB_ENV"

echo "CXX=${{matrix.host_compiler}}" >> "$GITHUB_ENV"
echo "LD_LIBRARY_PATH=/usr/local/${{matrix.cuda_ldpath}}:$LD_LIBRARY_PATH" >> "$GITHUB_ENV"

- name: Configure CMake
run: |

Expand Down
Loading