Charm 7.0.1 #3185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NetLRTS Linux CUDA buildonly | |
# Buildonly test, as CUDA needs an actual device to run. | |
on: pull_request | |
jobs: | |
build: | |
timeout-minutes: 45 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install nvidia-cuda-toolkit | |
./build all-test netlrts-linux-x86_64 cuda -j4 -g | |
export CUDATOOLKIT_HOME=/usr # TODO: make this unnecessary | |
make -j4 -C netlrts-linux-x86_64-cuda/examples/charm++/cuda OPTS="-g" | |
make -j4 -C netlrts-linux-x86_64-cuda/examples/ampi/cuda OPTS="-g" |