-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into woptim/shared-ci-update
- Loading branch information
Showing
5 changed files
with
65 additions
and
111 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
on: push | ||
name: Build | ||
jobs: | ||
build_docker: | ||
strategy: | ||
matrix: | ||
target: [gcc, clang, hip, cuda] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- 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/[email protected] | ||
with: | ||
build-dir: build | ||
options: | ||
ENABLE_WARNINGS_AS_ERRORS=Off | ||
UMPIRE_ENABLE_DEVELOPER_DEFAULTS=On | ||
UMPIRE_ENABLE_DEVELOPER_BENCHMARKS=On | ||
CMAKE_BUILD_TYPE=Release | ||
run-build: true | ||
build-args: '--parallel 16' | ||
- uses: threeal/[email protected] | ||
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 | ||
- uses: threeal/[email protected] | ||
with: | ||
build-dir: build | ||
options: | ||
ENABLE_WARNINGS_AS_ERRORS=Off | ||
UMPIRE_ENABLE_FILESYSTEM=On | ||
UMPIRE_ENABLE_TOOLS=Off | ||
UMPIRE_ENABLE_DEVELOPER_BENCHMARKS=On | ||
UMPIRE_ENABLE_BENCHMARKS=Off | ||
BLT_CXX_STD="" | ||
CMAKE_CXX_STANDARD=17 | ||
CMAKE_BUILD_TYPE=Release | ||
${{ matrix.shared.args }} | ||
run-build: true | ||
build-args: '--parallel 16' |
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
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
This file was deleted.
Oops, something went wrong.
Submodule radiuss-spack-configs
updated
12 files
+6 −6 | .readthedocs.yml | |
+3 −0 | docs/requirements.txt | |
+0 −0 | docs/sphinx/conf.py | |
+1 −1 | docs/sphinx/index.rst | |
+15 −0 | packages/camp/camp-rocm6.patch | |
+33 −2 | packages/camp/package.py | |
+109 −72 | packages/care/package.py | |
+19 −1 | packages/chai/package.py | |
+8 −2 | packages/fmt/package.py | |
+48 −13 | packages/raja/package.py | |
+11 −2 | packages/umpire/package.py | |
+26 −0 | toss_4_x86_64_ib/spack.yaml |