Skip to content

Commit

Permalink
Use newest compiler versions
Browse files Browse the repository at this point in the history
  • Loading branch information
minhqdao committed Mar 10, 2024
1 parent 921456f commit 3d13103
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
os: [ubuntu-latest]
toolchain:
- { compiler: gcc, version: 13 }
- { compiler: intel, version: 2023.2 }
- { compiler: intel-classic, version: 2021.10 }
- { compiler: intel, version: 2024.0 }
- { compiler: intel-classic, version: 2021.11 }
- { compiler: nvidia-hpc, version: 23.11 }
include:
- os: macos-latest
Expand Down
4 changes: 2 additions & 2 deletions src/version_f.f90
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ subroutine parse_comp_set(this)
comp%version%major = 2
comp%version%minor = 1
comp%version%patch = 0
print *, 'before array extension: ', this%comps(1)%op ! Pay attention to this
print *, 'before array extension: ', this%comps(1)%op ! Prints '>'
this%comps = [this%comps, comp]
print *, 'after array extension: ', this%comps(1)%op ! And this
print *, 'after array extension: ', this%comps(1)%op ! Prints '0'
end
end

0 comments on commit 3d13103

Please sign in to comment.