-
-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add minor version to install clang * Add clang version checks * Revert to ubuntu-22.04 * Try adding libtinfo5 * Disable fortran
- Loading branch information
Showing
4 changed files
with
39 additions
and
25 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 |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
# Linux (Ubuntu) w/ gcc + coverage | ||
# | ||
name: "Ubuntu GCC Coverage" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_coverage) | ||
run: | | ||
|
@@ -122,19 +122,19 @@ jobs: | |
# Linux (Ubuntu) w/ clang + LeakSanitizer | ||
# | ||
name: "Ubuntu Clang LeakSanitizer" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_Leak) | ||
run: | | ||
sudo apt update | ||
sudo apt-get install ninja-build doxygen graphviz curl | ||
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5 | ||
- name: add clang to env | ||
uses: KyleMayes/[email protected] | ||
id: setup-clang | ||
with: | ||
env: true | ||
version: '18' | ||
version: '18.1' | ||
|
||
- name: Set file base name (Linux_Leak) | ||
id: set-file-base | ||
|
@@ -222,19 +222,19 @@ jobs: | |
# Linux (Ubuntu) w/ clang + AddressSanitizer | ||
# | ||
name: "Ubuntu Clang AddressSanitizer" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_Address) | ||
run: | | ||
sudo apt update | ||
sudo apt-get install ninja-build doxygen graphviz curl | ||
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5 | ||
- name: add clang to env | ||
uses: KyleMayes/[email protected] | ||
id: setup-clang | ||
with: | ||
env: true | ||
version: '18' | ||
version: '18.1' | ||
|
||
- name: Set file base name (Linux_Address) | ||
id: set-file-base | ||
|
@@ -322,19 +322,19 @@ jobs: | |
# Linux (Ubuntu) w/ clang + UndefinedBehaviorSanitizer | ||
# | ||
name: "Ubuntu Clang UndefinedBehaviorSanitizer" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_UndefinedBehavior) | ||
run: | | ||
sudo apt update | ||
sudo apt-get install ninja-build doxygen graphviz curl | ||
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5 | ||
- name: add clang to env | ||
uses: KyleMayes/[email protected] | ||
id: setup-clang | ||
with: | ||
env: true | ||
version: '18' | ||
version: '18.1' | ||
|
||
- name: Set file base name (Linux_UndefinedBehavior) | ||
id: set-file-base | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -230,6 +230,12 @@ jobs: | |
with: | ||
version: "1.9.7" | ||
|
||
- name: check clang version | ||
shell: bash | ||
run: | | ||
which clang | ||
clang -v | ||
- name: Set up JDK 19 | ||
uses: actions/setup-java@v4 | ||
with: | ||
|
@@ -615,19 +621,25 @@ jobs: | |
# Linux (Ubuntu) w/ clang + CMake | ||
# | ||
name: "Ubuntu Clang CMake" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_clang) | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install ninja-build doxygen graphviz curl | ||
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5 | ||
- name: add clang to env | ||
uses: KyleMayes/[email protected] | ||
id: setup-clang | ||
with: | ||
env: true | ||
version: '18' | ||
version: '18.1' | ||
|
||
- name: check clang version | ||
shell: bash | ||
run: | | ||
which clang | ||
clang -v | ||
- name: Set file base name (Linux_clang) | ||
id: set-file-base | ||
|
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