Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
run: |
${FC} --version
cmake --version
ulimit -a

- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -88,7 +89,7 @@ jobs:
uses: actions/upload-artifact@v4
if: failure()
with:
name: logfiles
name: logfiles-${{ matrix.os }}-${{ matrix.compiler }}
path: |
build/**/*.log

Expand Down Expand Up @@ -164,7 +165,7 @@ jobs:
uses: actions/upload-artifact@v4
if: failure()
with:
name: logfiles
name: logfiles-intel
path: |
build/**/*.log

Expand Down Expand Up @@ -220,7 +221,7 @@ jobs:
uses: actions/upload-artifact@v4
if: failure()
with:
name: logfiles
name: logfiles-nvidia
path: |
build/**/*.log

Expand Down Expand Up @@ -276,7 +277,7 @@ jobs:
uses: actions/upload-artifact@v4
if: failure()
with:
name: logfiles
name: logfiles-flang
path: |
build/**/*.log

2 changes: 2 additions & 0 deletions ChangeLog.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Fixed

- Fix CI for artifact upload
- Update IntelLLVM flags

## [1.15.0] - 2025-01-31

Expand Down
8 changes: 3 additions & 5 deletions cmake/IntelLLVM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ else()
set(disable_warning_for_long_names "-diag-disable 5462")
set(cpp "-cpp")
endif()


set(traceback "-traceback")


set(CMAKE_Fortran_FLAGS_DEBUG "${no_optimize} ${check_all} ${traceback} ${save_temps}")
set(CMAKE_Fortran_FLAGS_RELEASE "-O3")
set(CMAKE_Fortran_FLAGS "${debug_info} ${cpp} ${traceback} ${check_all} ${disable_warning_for_long_names} ${save_temps}")
set(common_flags "${debug_info} ${cpp} ${traceback} ${disable_warning_for_long_names}")
set(CMAKE_Fortran_FLAGS_DEBUG "${no_optimize} ${common_flags} ${check_all} ${traceback} ${save_temps}")
set(CMAKE_Fortran_FLAGS_RELEASE "-O3 ${common_flags}")

add_definitions(-D_INTEL)
Loading