-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Remove redundancy in nvcc dependencies files (#3387)
Hi @ax3l, @WeiqunZhang, I hope you're enjoying your time in Switzerland. :) I've removed some redundancy around the nvcc dependencies files, mostly for consistency with the changes I did to the hip dependencies file in #3341. It should all be pretty self-explanatory. Cheers, -Nuno
- Loading branch information
Showing
8 changed files
with
35 additions
and
92 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 |
---|---|---|
|
@@ -7,15 +7,15 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
# Build libamrex and all tests with CUDA 11.0.2 (recent supported) | ||
# Build libamrex and all tests with CUDA 11.2 | ||
tests-cuda11: | ||
name: [email protected] [email protected] C++17 Release [tests] | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Dependencies | ||
run: | | ||
.github/workflows/dependencies/dependencies_nvcc11.sh | ||
.github/workflows/dependencies/dependencies_nvcc.sh 11.2 | ||
.github/workflows/dependencies/dependencies_ccache.sh | ||
- name: Set Up Cache | ||
uses: actions/cache@v3 | ||
|
@@ -74,7 +74,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- name: Dependencies | ||
run: | | ||
.github/workflows/dependencies/dependencies_llvm_cuda11_ubuntu22.sh | ||
.github/workflows/dependencies/dependencies_llvm_cuda11_clang15.sh | ||
.github/workflows/dependencies/dependencies_ccache.sh | ||
- name: Set Up Cache | ||
uses: actions/cache@v3 | ||
|
@@ -177,7 +177,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- name: Dependencies | ||
run: | | ||
.github/workflows/dependencies/dependencies_nvcc11.sh | ||
.github/workflows/dependencies/dependencies_nvcc.sh 11.2 | ||
.github/workflows/dependencies/dependencies_ccache.sh | ||
- name: Set Up Cache | ||
uses: actions/cache@v3 | ||
|
19 changes: 19 additions & 0 deletions
19
.github/workflows/dependencies/dependencies_llvm_cuda11_clang15.sh
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,19 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright 2020-2022 Axel Huebl | ||
# | ||
# License: BSD-3-Clause-LBNL | ||
|
||
set -eu -o pipefail | ||
|
||
sudo apt-get -qqq update | ||
sudo apt-get install -y \ | ||
libunwind-15 \ | ||
libunwind-15-dev \ | ||
clang-15 \ | ||
libc++-15-dev \ | ||
libc++abi-15-dev \ | ||
libc++1-15 \ | ||
libc++abi1-15 | ||
|
||
.github/workflows/dependencies/dependencies_nvcc.sh 11.7 |
38 changes: 0 additions & 38 deletions
38
.github/workflows/dependencies/dependencies_llvm_cuda11_ubuntu22.sh
This file was deleted.
Oops, something went wrong.
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.
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 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