Try release cuda build #86
Workflow file for this run
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
on: push | |
name: Build | |
jobs: | |
build_docker: | |
strategy: | |
matrix: | |
## target: [gcc12, gcc13, clang13, clang14_debug, clang15, intel2024, cuda12.3_debug, hip5.6, intel2024_sycl] | |
target: [gcc12, gcc13, clang13, clang14_debug, clang15, cuda11.2, hip5.6, intel2024_sycl] | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /opt/ghc | |
sudo rm -rf /opt/hostedtoolcache/CodeQL | |
sudo docker image prune --all --force | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/build-push-action@v6 | |
with: | |
target: ${{ matrix.target }} | |
build_mac: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: threeal/cmake-action@v1.3.0 | |
with: | |
build-dir: build | |
options: | |
CMAKE_CXX_STANDARD=14 | |
ENABLE_OPENMP=Off | |
CMAKE_BUILD_TYPE=Release | |
run-build: true | |
build-args: '--parallel 16' | |
- uses: threeal/ctest-action@v1.1.0 | |
build_windows: | |
strategy: | |
matrix: | |
shared: | |
- args: | |
BUILD_SHARED_LIBS=On | |
CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=On | |
- args: BUILD_SHARED_LIBS=Off | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
## ==================================== | |
## Config and build action following Umpire. This works! | |
- uses: threeal/cmake-action@v1.3.0 | |
with: | |
build-dir: build | |
options: | |
ENABLE_WARNINGS_AS_ERRORS=Off | |
BLT_CXX_STD="" | |
CMAKE_CXX_STANDARD=17 | |
CMAKE_BUILD_TYPE=Release | |
${{ matrix.shared.args }} | |
run-build: true | |
build-args: '--parallel 16' | |
## ==================================== | |
## Print the contents of the test directory in the build space | |
- run: | | |
dir -r D:\a\RAJA\RAJA\build\test | |
## ==================================== | |
## Attempt to run tests using same mechanism that works with Mac build | |
## This generates errors because test executables are not found in the | |
## build/test/Release directory where it is looking for them. | |
## Many attempts to set the correct test directory failed... | |
## - uses: threeal/ctest-action@v1.1.0 | |
## with: | |
## test-dir: build/test/Release/.. | |
## build-config: Release | |
### args: '-C Release' | |
## ==================================== | |
## Attempt to run tests by invoking ctest manually. | |
## Generates errors similar to above -- cannot find test executables. | |
## - name: Test | |
## working-directory: ${{github.workspace}}/build | |
## run: ctest -C Release --output-on-failure | |
## ==================================== | |
## Another attempt. | |
## This produces no errors, but test executables are not found. | |
## - name: Run Tests | |
## run: ctest.exe -C Release | |
## shell: bash |