-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bcd8d0b
commit 4938b00
Showing
8 changed files
with
170 additions
and
125 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 |
---|---|---|
|
@@ -21,6 +21,7 @@ jobs: | |
- os: ubuntu-latest | ||
cc: ../llvm/bin/clang | ||
cxx: ../llvm/bin/clang++ | ||
clangVer: "15.0" | ||
blas: off | ||
fftw: off | ||
mpfr: on | ||
|
@@ -30,39 +31,13 @@ jobs: | |
- os: ubuntu-latest | ||
cc: ../llvm/bin/clang | ||
cxx: ../llvm/bin/clang++ | ||
clangVer: "15.0" | ||
blas: on | ||
fftw: on | ||
mpfr: on | ||
cpp: 20 | ||
pretty: "LibRapid_Ubuntu_Clang_C++20_BLAS_FFTW_MPFR" | ||
|
||
- os: ubuntu-latest | ||
cc: gcc-9 | ||
cxx: g++-9 | ||
blas: off | ||
fftw: off | ||
mpfr: on | ||
cpp: 20 | ||
pretty: "LibRapid_Ubuntu_Clang_C++20_MPFR" | ||
|
||
- os: ubuntu-latest | ||
cc: gcc-9 | ||
cxx: g++-9 | ||
blas: on | ||
fftw: on | ||
mpfr: on | ||
cpp: 20 | ||
pretty: "LibRapid_Ubuntu_Clang_C++20_BLAS_FFTW_MPFR" | ||
|
||
- os: ubuntu-latest | ||
cc: gcc-9 | ||
cxx: g++-9 | ||
blas: off | ||
fftw: off | ||
mpfr: on | ||
cpp: 23 | ||
pretty: "LibRapid_Ubuntu_Clang_C++23_MPFR" | ||
|
||
- os: ubuntu-latest | ||
cc: gcc-9 | ||
cxx: g++-9 | ||
|
@@ -147,6 +122,7 @@ jobs: | |
- os: macos-latest | ||
cc: ../llvm/bin/clang | ||
cxx: ../llvm/bin/clang++ | ||
clangVer: "15.0" | ||
blas: off | ||
fftw: off | ||
mpfr: on | ||
|
@@ -156,6 +132,7 @@ jobs: | |
- os: macos-latest | ||
cc: ../llvm/bin/clang | ||
cxx: ../llvm/bin/clang++ | ||
clangVer: "15.0" | ||
blas: on | ||
fftw: on | ||
mpfr: on | ||
|
@@ -201,6 +178,7 @@ jobs: | |
- os: windows-latest | ||
cc: ../llvm/clang | ||
cxx: ../llvm/clang++ | ||
clangVer: "15.0" | ||
blas: off | ||
fftw: off | ||
mpfr: on | ||
|
@@ -210,6 +188,7 @@ jobs: | |
- os: windows-latest | ||
cc: ../llvm/clang | ||
cxx: ../llvm/clang++ | ||
clangVer: "15.0" | ||
blas: on | ||
fftw: on | ||
mpfr: on | ||
|
@@ -219,6 +198,7 @@ jobs: | |
- os: windows-latest | ||
cc: ./llvm/clang | ||
cxx: ./llvm/clang++ | ||
clangVer: "15.0" | ||
blas: off | ||
fftw: off | ||
mpfr: on | ||
|
@@ -228,6 +208,7 @@ jobs: | |
- os: windows-latest | ||
cc: ./llvm/clang | ||
cxx: ./llvm/clang++ | ||
clangVer: "15.0" | ||
blas: on | ||
fftw: on | ||
mpfr: on | ||
|
@@ -279,7 +260,7 @@ jobs: | |
- name: Install Clang | ||
uses: KyleMayes/install-llvm-action@v1 | ||
with: | ||
version: "15.0" | ||
version: ${{ matrix.clangVer }} | ||
directory: "./llvm" | ||
env: on | ||
|
||
|
@@ -318,34 +299,6 @@ jobs: | |
cd buildRelease | ||
ctest -C Release --output-on-failure | ||
# - name: Store Debug Build | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: ${{ matrix.pretty }}_Debug | ||
# path: buildDebug | ||
|
||
# - name: Store Release Build | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: ${{ matrix.pretty }}_Release | ||
# path: buildRelease | ||
|
||
# Zip debug build before uploading | ||
# - name: Zip build results before uploading | ||
# uses: vimtor/[email protected] | ||
# continue-on-error: true | ||
# with: | ||
# files: ./buildDebug ./buildRelease | ||
# recursive: true | ||
# dest: ${{ matrix.pretty }}.zip | ||
|
||
# - name: Store Build Artifacts | ||
# uses: actions/upload-artifact@v3 | ||
# continue-on-error: true | ||
# with: | ||
# name: ${{ matrix.pretty }} | ||
# path: ${{ matrix.pretty }}.zip | ||
|
||
quodona: | ||
name: Run Qodana | ||
needs: compile | ||
|
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
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
Oops, something went wrong.